more classpath classes

This commit is contained in:
Joel Dice
2007-07-21 16:36:51 -06:00
parent fd770fd884
commit 90d60b3459
13 changed files with 269 additions and 18 deletions

View File

@ -45,6 +45,14 @@ public class WeakHashMap<K, V> implements Map<K, V> {
return map.remove(key);
}
public void clear() {
map.clear();
}
public Set<Entry<K, V>> entrySet() {
return map.entrySet();
}
private static class MyCell<K, V>
extends WeakReference<K>
implements HashMap.Cell<K, V>