Generated by
JDiff

Class com.webobjects.foundation.NSDictionary

Added interface java.util.Map.

Added Constructors
NSDictionary(Map, boolean) Creates a dictionary containing the keys and values found in Map.
 

Added Methods
void clear() Warning: NSDictionaries are immutable and therefore this method does not adhere to the Java specification.
boolean containsKey(Object) NSDictionaries do not allow null keys which differs from the java.util.Map specification.
boolean containsValue(Object) NSDictionaries do not allow for null values which differs from the java.util.Map specification.
Set entrySet() @see Map#keySet
Object get(Object) Conforms to NSDictionary.objectForKey() specification.
HashMap hashMap() @return a copy of this dictionary transformed into a java.util.HashMap
boolean isEmpty() @see Map#isEmpty
Set keySet() @see Map#keySet
Object put(Object, Object) Warning: NSDictionaries are immutable and therefore this method does not adhere to the Java specification.
void putAll(Map) Warning: NSDictionaries are immutable and therefore this method does not adhere to the Java specification.
Object remove(Object) Warning: NSDictionaries are immutable and therefore this method does not adhere to the Java specification.
int size() @see Map#size
Collection values() Warning: NSDictionaries are immutable and therefore this method does not adhere to the Java specification.