Brought more in line with Sun's SDK

This commit is contained in:
mweaver 2009-04-22 10:04:23 -06:00
parent 9023899c81
commit c5dd57f74c

View File

@ -15,17 +15,17 @@ public interface Map<K, V> {
public int size();
public boolean containsKey(K key);
public boolean containsKey(Object obj);
public boolean containsValue(V value);
public boolean containsValue(Object obj);
public V get(K key);
public V get(Object key);
public V put(K key, V value);
public void putAll(Map<? extends K,? extends V> elts);
public V remove(K key);
public V remove(Object key);
public void clear();