org.objectweb.jac.util
Class LinkedMap

java.lang.Object
  |
  +--java.util.AbstractMap
        |
        +--java.util.HashMap
              |
              +--org.objectweb.jac.util.LinkedMap
All Implemented Interfaces:
Cloneable, Map, Serializable

public class LinkedMap
extends HashMap

Use only put(Object,Object) and get(Object).

See Also:
Serialized Form

Constructor Summary
LinkedMap()
           
LinkedMap(Map next)
           
 
Method Summary
 boolean containsKey(Object key)
           
 Object get(Object key)
           
 
Methods inherited from class java.util.HashMap
clear, clone, containsValue, entrySet, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

LinkedMap

public LinkedMap()

LinkedMap

public LinkedMap(Map next)
Method Detail

get

public Object get(Object key)
Specified by:
get in interface Map
Overrides:
get in class HashMap

containsKey

public boolean containsKey(Object key)
Specified by:
containsKey in interface Map
Overrides:
containsKey in class HashMap