Generated by
JDiff

Class com.webobjects.foundation.NSSet

Added interface java.util.Set.

Added Constructors
NSSet(Set, boolean) Creates an NSSet containing all the elements in set
 

Added Methods
boolean add(Object) Operation not supported
boolean addAll(Collection) Operation not supported
void clear() Operation not supported
boolean contains(Object) NSSets cannot contain null values and therefore do not adhere to the java.util.Set specification
boolean containsAll(Collection) @param c - collection to be checked for containment in this set
HashSet hashSet() Creates a java.util.HashSet with the same contents as this object.
boolean isEmpty() @see Set#isEmpty
Iterator iterator() @see Set#iterator
boolean remove(Object) Operation not supported
boolean removeAll(Collection) Operation not supported
boolean retainAll(Collection) Operation not supported
int size() @see Set#size
Object[] toArray() @see Set#toArray
Object[] toArray(Object[]) @see Set#toArray