Generated by
JDiff

Interface java.util.Set

Documentation changed from old to new.

Changed Methods
boolean add(Object) Documentation changed from old to new.
Adds the specified element to this set if it is not already present (optional operation).
boolean addAll(Collection) Documentation changed from old to new.
Adds all of the elements in the specified collection to this set if they're not already present (optional operation).
boolean contains(Object) Documentation changed from old to new.
Returns true if this set contains the specified element.
boolean containsAll(Collection) Documentation changed from old to new.
Returns true if this set contains all of the elements of the specified collection.
boolean remove(Object) Documentation changed from old to new.
Removes the specified element from this set if it is present (optional operation).
boolean removeAll(Collection) Documentation changed from old to new.
Removes from this set 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 set 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 set; the runtime type of the returned array is that of the specified array.