Generated by
JDiff

Class java.util.ArrayList

Added interface java.util.RandomAccess.
Documentation changed from old to new.

Changed Constructors
ArrayList(Collection) Documentation changed from old to new.
Constructs a list containing the elements of the specified collection in the order they are returned by the collection's iterator.
ArrayList(void) Documentation changed from old to new.
Constructs an empty list with an initial capacity of ten.
 

Changed Methods
boolean contains(Object) Documentation changed from old to new.
Returns true if this list contains the specified element.
boolean addAll(int, Collection) Documentation changed from old to new.
Inserts all of the elements in the specified Collection into this list starting 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 list in the order that they are returned by the specified Collection's Iterator.
Object[] toArray(Object[]) Documentation changed from old to new.
Returns an array containing all of the elements in this list in the correct order; the runtime type of the returned array is that of the specified array.