Renamed AbstractIntArrayList, AbstractShortArrayList,
AbstractLongArrayList to AbstractIntList, AbstractShortList, AbstractLongList. New names follow general naming pattern in Collections Framework, and anticipate later IntList, ShortList and LongList interfaces. Recommended by Jonathan Carlson (joncrlsn2 at yahoo dot com). git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130802 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f9d36a36f4
commit
cddf8c5c66
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractIntArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractIntList.java,v 1.1 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -71,10 +71,10 @@ import java.util.ListIterator;
|
|||
/**
|
||||
* Abstract base class for lists backed by an <Code>int</Code> array.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.1 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public abstract class AbstractIntArrayList extends AbstractList implements List, Serializable {
|
||||
public abstract class AbstractIntList extends AbstractList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------ Abstract Accessors
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractLongArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractLongList.java,v 1.1 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -71,10 +71,10 @@ import java.util.ListIterator;
|
|||
/**
|
||||
* Abstract base class for lists backed by a <Code>long</Code> array.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.1 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public abstract class AbstractLongArrayList extends AbstractList implements List, Serializable {
|
||||
public abstract class AbstractLongList extends AbstractList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------ Abstract Accessors
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractShortArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/AbstractShortList.java,v 1.1 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -71,10 +71,10 @@ import java.util.ListIterator;
|
|||
/**
|
||||
* Abstract base class for lists backed by a <Code>short</Code> array.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.1 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public abstract class AbstractShortArrayList extends AbstractList implements List, Serializable {
|
||||
public abstract class AbstractShortList extends AbstractList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------ Abstract Accessors
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/IntArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/IntArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -74,10 +74,10 @@ import java.util.ListIterator;
|
|||
/**
|
||||
* A list of <Code>int</Code> elements.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class IntArrayList extends AbstractIntArrayList implements List, Serializable {
|
||||
public class IntArrayList extends AbstractIntList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------------ Constructors
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/LongArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/LongArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -74,10 +74,10 @@ import java.util.ListIterator;
|
|||
/**
|
||||
* A list of <Code>long</COde> elements.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class LongArrayList extends AbstractLongArrayList implements List, Serializable {
|
||||
public class LongArrayList extends AbstractLongList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------------ Constructors
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/ShortArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/ShortArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -74,10 +74,10 @@ import java.util.ListIterator;
|
|||
/**
|
||||
* A list of <Code>short</Code> elements.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class ShortArrayList extends AbstractShortArrayList implements List, Serializable {
|
||||
public class ShortArrayList extends AbstractShortList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------------ Constructors
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/UnsignedByteArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/UnsignedByteArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -76,10 +76,10 @@ import java.util.ListIterator;
|
|||
* Mutators on this class will reject any <Code>short</Code> that does not
|
||||
* express an unsigned 8-bit value.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class UnsignedByteArrayList extends AbstractShortArrayList implements List, Serializable {
|
||||
public class UnsignedByteArrayList extends AbstractShortList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------------ Constructors
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/UnsignedIntArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/UnsignedIntArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -76,10 +76,10 @@ import java.util.ListIterator;
|
|||
* Mutators on this class will reject any <Code>long</Code> that does not
|
||||
* express an unsigned 16-bit value.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class UnsignedIntArrayList extends AbstractLongArrayList implements List, Serializable {
|
||||
public class UnsignedIntArrayList extends AbstractLongList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------------ Constructors
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/UnsignedShortArrayList.java,v 1.2 2002/08/13 19:41:36 pjack Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/08/13 19:41:36 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/UnsignedShortArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -76,10 +76,10 @@ import java.util.ListIterator;
|
|||
* Mutators on this class will reject any <Code>int</Code> that does not
|
||||
* express an unsigned 16-bit value.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2002/08/13 19:41:36 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class UnsignedShortArrayList extends AbstractIntArrayList implements List, Serializable {
|
||||
public class UnsignedShortArrayList extends AbstractIntList implements List, Serializable {
|
||||
|
||||
//------------------------------------------------------------ Constructors
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestAbstractIntArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestAbstractIntArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -68,7 +68,7 @@ import org.apache.commons.collections.TestList;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public abstract class TestAbstractIntArrayList extends TestList {
|
||||
|
@ -81,7 +81,7 @@ public abstract class TestAbstractIntArrayList extends TestList {
|
|||
|
||||
//---------------------------------------------------------------- Abstract
|
||||
|
||||
abstract protected AbstractIntArrayList createList();
|
||||
abstract protected AbstractIntList createList();
|
||||
|
||||
//------------------------------------------------------- TestList interface
|
||||
|
||||
|
@ -92,7 +92,7 @@ public abstract class TestAbstractIntArrayList extends TestList {
|
|||
//------------------------------------------------------------------- Tests
|
||||
|
||||
public void testAddGet() {
|
||||
AbstractIntArrayList list = createList();
|
||||
AbstractIntList list = createList();
|
||||
for(int i=0;i<1000;i++) {
|
||||
list.addInt(i);
|
||||
}
|
||||
|
@ -102,7 +102,7 @@ public abstract class TestAbstractIntArrayList extends TestList {
|
|||
}
|
||||
|
||||
public void testAddGetLargeValues() {
|
||||
AbstractIntArrayList list = createList();
|
||||
AbstractIntList list = createList();
|
||||
for(int i=0;i<1000;i++) {
|
||||
int value = ((int)(Short.MAX_VALUE));
|
||||
value += i;
|
||||
|
@ -116,7 +116,7 @@ public abstract class TestAbstractIntArrayList extends TestList {
|
|||
}
|
||||
|
||||
public void testAddAndShift() {
|
||||
AbstractIntArrayList list = createList();
|
||||
AbstractIntList list = createList();
|
||||
list.addInt(0, 1);
|
||||
assertEquals("Should have one entry", 1, list.size());
|
||||
list.addInt(3);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestAbstractLongArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestAbstractLongArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -68,7 +68,7 @@ import org.apache.commons.collections.TestList;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public abstract class TestAbstractLongArrayList extends TestList {
|
||||
|
@ -81,7 +81,7 @@ public abstract class TestAbstractLongArrayList extends TestList {
|
|||
|
||||
//---------------------------------------------------------------- Abstract
|
||||
|
||||
abstract protected AbstractLongArrayList createList();
|
||||
abstract protected AbstractLongList createList();
|
||||
|
||||
//------------------------------------------------------- TestList interface
|
||||
|
||||
|
@ -92,7 +92,7 @@ public abstract class TestAbstractLongArrayList extends TestList {
|
|||
//------------------------------------------------------------------- Tests
|
||||
|
||||
public void testAddGet() {
|
||||
AbstractLongArrayList list = createList();
|
||||
AbstractLongList list = createList();
|
||||
for(long i=0L;i<1000L;i++) {
|
||||
list.addLong(i);
|
||||
}
|
||||
|
@ -102,7 +102,7 @@ public abstract class TestAbstractLongArrayList extends TestList {
|
|||
}
|
||||
|
||||
public void testAddGetLargeValues() {
|
||||
AbstractLongArrayList list = createList();
|
||||
AbstractLongList list = createList();
|
||||
for(long i=0L;i<1000L;i++) {
|
||||
long value = ((long)(Integer.MAX_VALUE));
|
||||
value += i;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestAbstractShortArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestAbstractShortArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -68,7 +68,7 @@ import org.apache.commons.collections.TestList;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public abstract class TestAbstractShortArrayList extends TestList {
|
||||
|
@ -81,7 +81,7 @@ public abstract class TestAbstractShortArrayList extends TestList {
|
|||
|
||||
//---------------------------------------------------------------- Abstract
|
||||
|
||||
abstract protected AbstractShortArrayList createList();
|
||||
abstract protected AbstractShortList createList();
|
||||
|
||||
//------------------------------------------------------- TestList interface
|
||||
|
||||
|
@ -92,7 +92,7 @@ public abstract class TestAbstractShortArrayList extends TestList {
|
|||
//------------------------------------------------------------------- Tests
|
||||
|
||||
public void testAddGet() {
|
||||
AbstractShortArrayList list = createList();
|
||||
AbstractShortList list = createList();
|
||||
for(short i=0;i<100;i++) {
|
||||
list.addShort(i);
|
||||
}
|
||||
|
@ -102,7 +102,7 @@ public abstract class TestAbstractShortArrayList extends TestList {
|
|||
}
|
||||
|
||||
public void testAddGetLargeValues() {
|
||||
AbstractShortArrayList list = createList();
|
||||
AbstractShortList list = createList();
|
||||
for(short i=128;i<256;i++) {
|
||||
list.addShort(i);
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestIntArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestIntArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -67,7 +67,7 @@ import junit.framework.TestSuite;
|
|||
import org.apache.commons.collections.BulkTest;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class TestIntArrayList extends TestAbstractIntArrayList {
|
||||
|
@ -85,7 +85,7 @@ public class TestIntArrayList extends TestAbstractIntArrayList {
|
|||
|
||||
//---------------------------------------------------------------- Abstract
|
||||
|
||||
protected AbstractIntArrayList createList() {
|
||||
protected AbstractIntList createList() {
|
||||
return new IntArrayList();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestLongArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestLongArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -67,7 +67,7 @@ import junit.framework.TestSuite;
|
|||
import org.apache.commons.collections.BulkTest;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class TestLongArrayList extends TestAbstractLongArrayList {
|
||||
|
@ -85,7 +85,7 @@ public class TestLongArrayList extends TestAbstractLongArrayList {
|
|||
|
||||
//---------------------------------------------------------- Abstract Impls
|
||||
|
||||
protected AbstractLongArrayList createList() {
|
||||
protected AbstractLongList createList() {
|
||||
return new LongArrayList();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestShortArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestShortArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -67,7 +67,7 @@ import junit.framework.TestSuite;
|
|||
import org.apache.commons.collections.BulkTest;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class TestShortArrayList extends TestAbstractShortArrayList {
|
||||
|
@ -85,7 +85,7 @@ public class TestShortArrayList extends TestAbstractShortArrayList {
|
|||
|
||||
//---------------------------------------------------------------- Abstract
|
||||
|
||||
protected AbstractShortArrayList createList() {
|
||||
protected AbstractShortList createList() {
|
||||
return new ShortArrayList();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestUnsignedByteArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestUnsignedByteArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -67,7 +67,7 @@ import junit.framework.TestSuite;
|
|||
import org.apache.commons.collections.BulkTest;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class TestUnsignedByteArrayList extends TestAbstractShortArrayList {
|
||||
|
@ -85,7 +85,7 @@ public class TestUnsignedByteArrayList extends TestAbstractShortArrayList {
|
|||
|
||||
//---------------------------------------------------------------- Abstract
|
||||
|
||||
protected AbstractShortArrayList createList() {
|
||||
protected AbstractShortList createList() {
|
||||
return new UnsignedByteArrayList();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestUnsignedIntArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestUnsignedIntArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -67,7 +67,7 @@ import junit.framework.TestSuite;
|
|||
import org.apache.commons.collections.BulkTest;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class TestUnsignedIntArrayList extends TestAbstractLongArrayList {
|
||||
|
@ -85,7 +85,7 @@ public class TestUnsignedIntArrayList extends TestAbstractLongArrayList {
|
|||
|
||||
//---------------------------------------------------------- Abstract Impls
|
||||
|
||||
protected AbstractLongArrayList createList() {
|
||||
protected AbstractLongList createList() {
|
||||
return new UnsignedIntArrayList();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestUnsignedShortArrayList.java,v 1.2 2002/06/21 04:01:31 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/06/21 04:01:31 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/primitives/Attic/TestUnsignedShortArrayList.java,v 1.3 2002/08/19 21:19:03 pjack Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/08/19 21:19:03 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -67,7 +67,7 @@ import junit.framework.TestSuite;
|
|||
import org.apache.commons.collections.BulkTest;
|
||||
|
||||
/**
|
||||
* @version $Revision: 1.2 $ $Date: 2002/06/21 04:01:31 $
|
||||
* @version $Revision: 1.3 $ $Date: 2002/08/19 21:19:03 $
|
||||
* @author Rodney Waldhoff
|
||||
*/
|
||||
public class TestUnsignedShortArrayList extends TestAbstractIntArrayList {
|
||||
|
@ -85,7 +85,7 @@ public class TestUnsignedShortArrayList extends TestAbstractIntArrayList {
|
|||
|
||||
//---------------------------------------------------------------- Abstract
|
||||
|
||||
protected AbstractIntArrayList createList() {
|
||||
protected AbstractIntList createList() {
|
||||
return new UnsignedShortArrayList();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue