Class CachingHashMap<K,V>

java.lang.Object
java.util.AbstractMap<K,V>
java.util.HashMap<K,V>
java.util.LinkedHashMap<K,V>
com.ptc.cat.gxt.client.util.CachingHashMap<K,V>
All Implemented Interfaces:
Serializable, Cloneable, Map<K,V>

public class CachingHashMap<K,V> extends LinkedHashMap<K,V>
A HashMap that contains at most maxEntries. The eldest entries are purged from the Map as new items are added.

Supported API: true

Extendable: true
See Also: