Class WrapperMap<K,V>

java.lang.Object
org.checkerframework.afu.scenelib.util.coll.WrapperMap<K,V>
Type Parameters:
K - the type of keys for the map
V - the type of values for the map
All Implemented Interfaces:
Map<K,V>
Direct Known Subclasses:
ASTIndex, VivifyingMap

public class WrapperMap<K,V> extends Object implements Map<K,V>
A WrapperMap is a map all of whose methods delegate by default to those of a supplied backing map. Subclasses can add or override methods. Compare to FilterInputStream.