| java.util.HashMap com.opensymphony.webwork.views.jasperreports.OgnlValueStackShadowMap
OgnlValueStackShadowMap | public class OgnlValueStackShadowMap extends HashMap (Code) | | Ported to WebWork2:
author: <a href="hermanns@aixcept.de">Rainer Hermanns</a> version: $Id: OgnlValueStackShadowMap.java 1282 2005-10-09 04:26:58Z plightbo $ |
Method Summary | |
public boolean | containsKey(Object key) Implementation of containsKey(), overriding HashMap implementation.
Parameters: key - - The key to check in HashMap and if not found to check on valueStack. | public Object | get(Object key) Implementation of get(), overriding HashMap implementation.
Parameters: key - - The key to get in HashMap and if not found there from the valueStack. |
OgnlValueStackShadowMap | public OgnlValueStackShadowMap(OgnlValueStack valueStack)(Code) | | Constructs an instance of OgnlValueStackShadowMap.
Parameters: valueStack - - the underlying valuestack |
containsKey | public boolean containsKey(Object key)(Code) | | Implementation of containsKey(), overriding HashMap implementation.
Parameters: key - - The key to check in HashMap and if not found to check on valueStack. true, if conatins key, false otherwise. See Also: java.util.HashMap.containsKey |
get | public Object get(Object key)(Code) | | Implementation of get(), overriding HashMap implementation.
Parameters: key - - The key to get in HashMap and if not found there from the valueStack. value - The object from HashMap or if null, from the valueStack. See Also: java.util.HashMap.get |
|
|