Generated by
JDiff

Class java.util.ArrayList

Documentation changed from old to new.

Changed Constructors
ArrayList(int) Documentation changed from old to new.
Constructs an empty list with the specified initial capacity.
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.
 

Changed Methods
boolean contains(Object) Documentation changed from old to new.
Returns true if this list contains the specified element.
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 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.