Generated by
JDiff

Class java.util.AbstractCollection

Documentation changed from old to new.

Changed Methods
boolean addAll(Collection) Documentation changed from old to new.
Adds all of the elements in the specified collection to this collection (optional operation).
void clear() Documentation changed from old to new.
Removes all of the elements from this collection (optional operation).
boolean containsAll(Collection) Documentation changed from old to new.
Returns true if this collection contains all of the elements in the specified collection.
boolean remove(Object) Documentation changed from old to new.
Removes a single instance of the specified element from this collection if it is present (optional operation).
boolean removeAll(Collection) Documentation changed from old to new.
Removes from this collection all of its 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 collection that are contained in the specified collection (optional operation).
Object[] toArray(Object[]) Documentation changed from old to new.
Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.