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

@ -15,6 +15,14 @@ public class Hashtable<K, V> implements Map<K, V> {
return map.size();
}
public synchronized boolean containsKey(K key) {
return map.containsKey(key);
}
public synchronized boolean containsValue(V value) {
return map.containsValue(value);
}
public synchronized V get(K key) {
return map.get(key);
}