org.apache.commons.jexl.context
Class HashMapContext

java.lang.Object
  |
  +--java.util.AbstractMap
        |
        +--java.util.HashMap
              |
              +--org.apache.commons.jexl.context.HashMapContext
All Implemented Interfaces:
Cloneable, JexlContext, Map, Serializable

public class HashMapContext
extends HashMap
implements JexlContext

Implementation of JexlContext based on a HashMap.

Since:
1.0
Version:
$Id: HashMapContext.java 397116 2006-04-26 07:01:33Z dion $
See Also:
Serialized Form

Inner classes inherited from class java.util.Map
Map.Entry
 
Constructor Summary
HashMapContext()
           
 
Method Summary
 Map getVars()
          {@inheritDoc}
 void setVars(Map vars)
          {@inheritDoc}
 
Methods inherited from class java.util.HashMap
clear, clone, containsKey, containsValue, entrySet, get, 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

HashMapContext

public HashMapContext()
Method Detail

setVars

public void setVars(Map vars)
{@inheritDoc}
Specified by:
setVars in interface JexlContext
Following copied from interface: org.apache.commons.jexl.JexlContext
Parameters:
vars - Contents of vars will be replaced with the content of this Map

getVars

public Map getVars()
{@inheritDoc}
Specified by:
getVars in interface JexlContext
Following copied from interface: org.apache.commons.jexl.JexlContext
Returns:
A reference to the variable Map associated with this JexlContext.


Copyright © 2003-2006 The Apache Software Foundation. All Rights Reserved.