fun with collections

This commit is contained in:
Joel Dice
2007-07-21 21:47:08 -06:00
parent 90d60b3459
commit da17490206
4 changed files with 111 additions and 7 deletions

View File

@ -13,6 +13,10 @@ public interface Map<K, V> {
public Set<Entry<K, V>> entrySet();
public Set<K> keySet();
public Collection<V> values();
public interface Entry<K, V> {
public K getKey();