Generated by
JDiff

Interface java.util.List

Documentation changed from old to new.

Changed Methods
boolean contains(Object) Documentation changed from old to new.
Returns true if this list contains the specified element.
boolean containsAll(Collection) Documentation changed from old to new.
Returns true if this list contains all of the elements of the specified collection.
int indexOf(Object) Documentation changed from old to new.
Returns the index in this list of the first occurrence of the specified element or -1 if this list does not contain this element.
int lastIndexOf(Object) Documentation changed from old to new.
Returns the index in this list of the last occurrence of the specified element or -1 if this list does not contain this element.
boolean removeAll(Collection) Documentation changed from old to new.
Removes from this list all the elements that are contained in the specified collection (optional operation).
boolean retainAll(Collection) Documentation changed from old to new.
Retains only the elements in this list that are contained in the specified collection (optional operation).
Object set(int, Object) Documentation changed from old to new.
Replaces the element at the specified position in this list with the specified element (optional operation).
List subList(int, int) Documentation changed from old to new.
Returns a view of the portion of this list between the specified fromIndex inclusive and toIndex exclusive.
boolean add(Object) Documentation changed from old to new.
Appends the specified element to the end of this list (optional operation).
void add(int, Object) Documentation changed from old to new.
Inserts the specified element at the specified position in this list (optional operation).
boolean addAll(int, Collection) Documentation changed from old to new.
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
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 (optional operation).
boolean remove(Object) Documentation changed from old to new.
Removes the first occurrence in this list of the specified element (optional operation).
Object[] toArray(Object[]) Documentation changed from old to new.
Returns an array containing all of the elements in this list in proper sequence; the runtime type of the returned array is that of the specified array.