| java.util.ArrayList EDU.purdue.cs.bloat.util.ResizeableArrayList
ResizeableArrayList | public class ResizeableArrayList extends ArrayList implements List,Cloneable,java.io.Serializable(Code) | | ResizableArrayList is the same as ArrayList except that ensureSize not only
increases the size of the array (super.ensureCapacity), but it also fills the
empty space with null. This way, the size method will return the length of
the array and not just the number of elements in it. I guess.
|
ResizeableArrayList | public ResizeableArrayList(int initialCapacity)(Code) | | This constructor is no longer supported in JDK1.2 public
ResizeableArrayList(int initialCapacity, int capacityIncrement) {
super(initialCapacity, capacityIncrement); }
|
ResizeableArrayList | public ResizeableArrayList()(Code) | | |
ensureSize | public void ensureSize(int size)(Code) | | |
|
|