net.cscott.jutil
public abstract class MapWrapper<K,V> extends Object implements Map<K,V>
Version: $Id: MapWrapper.java,v 1.4 2006-10-30 19:58:06 cananian Exp $
Constructor Summary | |
---|---|
MapWrapper() |
Method Summary | |
---|---|
void | clear() |
boolean | containsKey(Object o) |
boolean | containsValue(Object o) |
Set<Entry<K,V>> | entrySet() |
V | get(Object o) |
boolean | isEmpty() |
Set<K> | keySet() |
V | put(K k, V v) |
void | putAll(Map<? extends K,? extends V> m) |
V | remove(Object o) |
int | size() |
Collection<V> | values() |
protected abstract Map<K,V> | wrapped() |