public class VelocityContext extends AbstractContext implements java.lang.Cloneable
Context,
Serialized Form| Modifier and Type | Field and Description |
|---|---|
private java.util.Map |
context
Storage for key/value pairs.
|
| Constructor and Description |
|---|
VelocityContext()
Creates a new instance (with no inner context).
|
VelocityContext(Context innerContext)
Chaining constructor, used when you want to
wrap a context in another.
|
VelocityContext(java.util.Map context)
Creates a new instance with the provided storage (and no inner
context).
|
VelocityContext(java.util.Map context,
Context innerContext)
Initializes internal storage (never to
null), and
inner context. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
clone()
Clones this context object.
|
boolean |
internalContainsKey(java.lang.Object key)
determines if there is a value for the
given key
|
java.lang.Object |
internalGet(java.lang.String key)
retrieves value for key from internal
storage
|
java.lang.Object[] |
internalGetKeys()
returns array of keys
|
java.lang.Object |
internalPut(java.lang.String key,
java.lang.Object value)
stores the value for key to internal
storage
|
java.lang.Object |
internalRemove(java.lang.Object key)
remove a key/value pair from the
internal storage
|
containsKey, get, getChainedContext, getKeys, put, removeattachEventCartridge, getCurrentResource, getCurrentTemplateName, getEventCartridge, getTemplateNameStack, icacheGet, icachePut, popCurrentTemplateName, pushCurrentTemplateName, setCurrentResourcepublic VelocityContext()
public VelocityContext(java.util.Map context)
public VelocityContext(Context innerContext)
innerContext - The Context implementation to
wrap.public VelocityContext(java.util.Map context,
Context innerContext)
null), and
inner context.context - Internal storage, or null to
create default storage.innerContext - Inner context.public java.lang.Object internalGet(java.lang.String key)
internalGet in class AbstractContextkey - name of value to getpublic java.lang.Object internalPut(java.lang.String key,
java.lang.Object value)
internalPut in class AbstractContextkey - name of value to storevalue - value to storepublic boolean internalContainsKey(java.lang.Object key)
internalContainsKey in class AbstractContextkey - name of value to checkpublic java.lang.Object[] internalGetKeys()
internalGetKeys in class AbstractContextpublic java.lang.Object internalRemove(java.lang.Object key)
internalRemove in class AbstractContextkey - name of value to removepublic java.lang.Object clone()
clone in class java.lang.ObjectContext.Copyright ? 2002 Apache Software Foundation. All Rights Reserved.