flesh out some classpath classes

This commit is contained in:
Joel Dice
2007-07-22 13:06:21 -06:00
parent ecd31a10a4
commit 472ecb1713
18 changed files with 320 additions and 92 deletions

View File

@ -3,6 +3,10 @@ package java.util;
public interface Map<K, V> {
public int size();
public boolean containsKey(K key);
public boolean containsValue(V value);
public V get(K key);
public V put(K key, V value);