Generated by
JDiff

Class java.util.Vector

Documentation changed from old to new.

Changed Constructors
Vector(Collection) Documentation changed from old to new.
Constructs a vector containing the elements of the specified collection in the order they are returned by the collection's iterator.
 

Changed Methods
void clear() Documentation changed from old to new.
Removes all of the elements from this Vector.
void ensureCapacity(int) Documentation changed from old to new.
Increases the capacity of this vector if necessary to ensure that it can hold at least the number of components specified by the minimum capacity argument.
Object get(int) Documentation changed from old to new.
Returns the element at the specified position in this Vector.
boolean removeAll(Collection) Documentation changed from old to new.
Removes from this Vector all of its elements that are contained in the specified Collection.
void removeRange(int, int) Documentation changed from old to new.
Removes from this List all of the elements whose index is between fromIndex inclusive and toIndex exclusive.
boolean retainAll(Collection) Documentation changed from old to new.
Retains only the elements in this Vector that are contained in the specified Collection.
Object set(int, Object) Documentation changed from old to new.
Replaces the element at the specified position in this Vector with the specified element.
List subList(int, int) Documentation changed from old to new.
Returns a view of the portion of this List between fromIndex inclusive and toIndex exclusive.
boolean add(Object) Documentation changed from old to new.
Appends the specified element to the end of this Vector.
void add(int, Object) Documentation changed from old to new.
Inserts the specified element at the specified position in this Vector.
boolean addAll(int, Collection) Documentation changed from old to new.
Inserts all of the elements in in the specified Collection into this Vector at the specified position.
boolean addAll(Collection) Documentation changed from old to new.
Appends all of the elements in the specified Collection to the end of this Vector in the order that they are returned by the specified Collection's Iterator.
int indexOf(Object, int) Documentation changed from old to new.
Searches for the first occurence of the given argument beginning the search at index and testing for equality using the equals method.
int lastIndexOf(Object, int) Documentation changed from old to new.
Searches backwards for the specified object starting from the specified index and returns an index to it.
boolean remove(Object) Documentation changed from old to new.
Removes the first occurrence of the specified element in this Vector If the Vector does not contain the element it is unchanged.
Object remove(int) Documentation changed from old to new.
Removes the element at the specified position in this Vector.
Object[] toArray() Documentation changed from old to new.
Returns an array containing all of the elements in this Vector in the correct order.
 

Changed Fields
int capacityIncrement Documentation changed from old to new.
The amount by which the capacity of the vector is automatically incremented when its size becomes greater than its capacity.