sketch a few more classpath classes

This commit is contained in:
Joel Dice
2007-07-21 14:44:39 -06:00
parent 48226f988c
commit fd770fd884
17 changed files with 497 additions and 7 deletions

View File

@ -0,0 +1,19 @@
package java.util;
public interface Map<K, V> {
public int size();
public V get(K key);
public V put(K key, V value);
public V remove(K key);
public interface Entry<K, V> {
public K getKey();
public V getValue();
public void setValue(V value);
}
}