Changed Methods |
void add(int, Object)
|
Documentation changed from old to new. |
Inserts the specified element at the specified position in this list. |
void addElement(Object )
|
Documentation changed from old to new. |
Adds the specified component to the end of this list. |
boolean contains(Object )
|
Documentation changed from old to new. |
Tests whether the specified object is a component in this list. |
void copyInto(Object[] )
|
Documentation changed from old to new. |
Copies the components of this list into the specified array. |
Object elementAt(int )
|
Documentation changed from old to new. |
Returns the component at the specified index. |
Enumeration elements()
|
Documentation changed from old to new. |
Returns an enumeration of the components of this list. |
void ensureCapacity(int )
|
Documentation changed from old to new. |
Increases the capacity of this list if necessary to ensure that it can hold at least the number of components specified by the minimum capacity argument. |
Object firstElement()
|
Documentation changed from old to new. |
Returns the first component of this list. |
Object get(int )
|
Documentation changed from old to new. |
Returns the element at the specified position in this list. |
Object getElementAt(int )
|
Documentation changed from old to new. |
Returns the component at the specified index. |
int getSize()
|
Documentation changed from old to new. |
Returns the number of components in this list. |
void insertElementAt(Object, int)
|
Documentation changed from old to new. |
Inserts the specified object as a component in this list at the specified index . |
boolean isEmpty()
|
Documentation changed from old to new. |
Tests whether this list has any components. |
Object lastElement()
|
Documentation changed from old to new. |
Returns the last component of the list. |
Object remove(int )
|
Documentation changed from old to new. |
Removes the element at the specified position in this list. |
void removeAllElements()
|
Documentation changed from old to new. |
Removes all components from this list and sets its size to zero. |
boolean removeElement(Object )
|
Documentation changed from old to new. |
Removes the first (lowest-indexed) occurrence of the argument from this list. |
void removeElementAt(int )
|
Documentation changed from old to new. |
Deletes the component at the specified index. |
void removeRange(int, int)
|
Documentation changed from old to new. |
Deletes the components at the specified range of indexes. |
Object set(int, Object)
|
Documentation changed from old to new. |
Replaces the element at the specified position in this list with the specified element. |
void setElementAt(Object, int)
|
Documentation changed from old to new. |
Sets the component at the specified index of this list to be the specified object. |
void setSize(int )
|
Documentation changed from old to new. |
Sets the size of this list. |
int size()
|
Documentation changed from old to new. |
Returns the number of components in this list. |
Object[] toArray()
|
Documentation changed from old to new. |
Returns an array containing all of the elements in this list in the correct order. |
int indexOf(Object )
|
Documentation changed from old to new. |
Searches for the first occurrence of elem . |
int indexOf(Object, int)
|
Documentation changed from old to new. |
Searches for the first occurrence of elem beginning the search at index . |
int lastIndexOf(Object )
|
Documentation changed from old to new. |
Returns the index of the last occurrence of elem . |
int lastIndexOf(Object, int)
|
Documentation changed from old to new. |
Searches backwards for elem starting from the specified index and returns an index to it. |