Package org.apache.velocity.context
Class ChainedInternalContextAdapter
- java.lang.Object
-
- org.apache.velocity.context.ChainedInternalContextAdapter
-
- All Implemented Interfaces:
Context
,InternalContextAdapter
,InternalEventContext
,InternalWrapperContext
public abstract class ChainedInternalContextAdapter extends Object implements InternalContextAdapter
This is an abstract internal-use-only context implementation to be used as a subclass for other internal-use-only contexts that wrap other internal-use-only contexts. We use this context to make it easier to chain an existing context as part of a new context implementation. It just delegates everything to the inner/parent context. Subclasses then only need to override the methods relevant to them.- Since:
- 1.6
- Version:
- $Id: ChainedInternalContextAdapter.java 685724 2008-08-13 23:12:12Z nbubna $
- Author:
- Nathan Bubna
-
-
Field Summary
Fields Modifier and Type Field Description protected InternalContextAdapter
wrappedContext
the parent context
-
Constructor Summary
Constructors Constructor Description ChainedInternalContextAdapter(InternalContextAdapter inner)
CTOR, wraps an ICA
-
Method Summary
-
-
-
Field Detail
-
wrappedContext
protected InternalContextAdapter wrappedContext
the parent context
-
-
Constructor Detail
-
ChainedInternalContextAdapter
public ChainedInternalContextAdapter(InternalContextAdapter inner)
CTOR, wraps an ICA- Parameters:
inner
- context
-
-
Method Detail
-
getInternalUserContext
public Context getInternalUserContext()
Return the inner / user context.- Specified by:
getInternalUserContext
in interfaceInternalWrapperContext
- Returns:
- The inner / user context.
-
getBaseContext
public InternalContextAdapter getBaseContext()
Description copied from interface:InternalWrapperContext
Returns the base full context impl.- Specified by:
getBaseContext
in interfaceInternalWrapperContext
- Returns:
- The base full context impl.
- See Also:
InternalWrapperContext.getBaseContext()
-
get
public Object get(String key)
Retrieves from parent context.- Specified by:
get
in interfaceContext
- Specified by:
get
in interfaceInternalWrapperContext
- Parameters:
key
- name of item to get- Returns:
- stored object or null
-
put
public Object put(String key, Object value)
Put method also stores values in parent context- Specified by:
put
in interfaceContext
- Specified by:
put
in interfaceInternalWrapperContext
- Parameters:
key
- name of item to setvalue
- object to set to key- Returns:
- old stored object
-
containsKey
public boolean containsKey(String key)
Description copied from interface:Context
Indicates whether the specified key is in the context.- Specified by:
containsKey
in interfaceContext
- Specified by:
containsKey
in interfaceInternalWrapperContext
- Parameters:
key
- The key to look for.- Returns:
- Whether the key is in the context.
- See Also:
Context.containsKey(java.lang.String)
-
getKeys
public String[] getKeys()
Description copied from interface:Context
Get all the keys for the values in the context.- Specified by:
getKeys
in interfaceContext
- Returns:
- All the keys for the values in the context.
- See Also:
Context.getKeys()
-
remove
public Object remove(String key)
Description copied from interface:Context
Removes the value associated with the specified key from the context.- Specified by:
remove
in interfaceContext
- Parameters:
key
- The name of the value to remove.- Returns:
- The value that the key was mapped to, or
null
if unmapped. - See Also:
Context.remove(java.lang.String)
-
pushCurrentTemplateName
public void pushCurrentTemplateName(String s)
- See Also:
InternalHousekeepingContext.pushCurrentTemplateName(java.lang.String)
-
popCurrentTemplateName
public void popCurrentTemplateName()
- See Also:
InternalHousekeepingContext.popCurrentTemplateName()
-
getCurrentTemplateName
public String getCurrentTemplateName()
- See Also:
InternalHousekeepingContext.getCurrentTemplateName()
-
getTemplateNameStack
public String[] getTemplateNameStack()
- See Also:
InternalHousekeepingContext.getTemplateNameStack()
-
pushCurrentMacroName
public void pushCurrentMacroName(String s)
- See Also:
InternalHousekeepingContext.pushCurrentMacroName(java.lang.String)
-
popCurrentMacroName
public void popCurrentMacroName()
- See Also:
InternalHousekeepingContext.popCurrentMacroName()
-
getCurrentMacroName
public String getCurrentMacroName()
- See Also:
InternalHousekeepingContext.getCurrentMacroName()
-
getCurrentMacroCallDepth
public int getCurrentMacroCallDepth()
- See Also:
InternalHousekeepingContext.getCurrentMacroCallDepth()
-
getMacroNameStack
public String[] getMacroNameStack()
- See Also:
InternalHousekeepingContext.getMacroNameStack()
-
icacheGet
public IntrospectionCacheData icacheGet(Object key)
- See Also:
InternalHousekeepingContext.icacheGet(java.lang.Object)
-
icachePut
public void icachePut(Object key, IntrospectionCacheData o)
- See Also:
InternalHousekeepingContext.icachePut(java.lang.Object, org.apache.velocity.util.introspection.IntrospectionCacheData)
-
setMacroLibraries
public void setMacroLibraries(List<Template> macroLibraries)
- See Also:
InternalHousekeepingContext.setMacroLibraries(List)
-
getMacroLibraries
public List<Template> getMacroLibraries()
- See Also:
InternalHousekeepingContext.getMacroLibraries()
-
attachEventCartridge
public EventCartridge attachEventCartridge(EventCartridge ec)
- Specified by:
attachEventCartridge
in interfaceInternalEventContext
- Returns:
- The old EventCartridge.
- See Also:
InternalEventContext.attachEventCartridge(org.apache.velocity.app.event.EventCartridge)
-
getEventCartridge
public EventCartridge getEventCartridge()
- Specified by:
getEventCartridge
in interfaceInternalEventContext
- Returns:
- The current EventCartridge.
- See Also:
InternalEventContext.getEventCartridge()
-
setCurrentResource
public void setCurrentResource(Resource r)
- See Also:
InternalHousekeepingContext.setCurrentResource(org.apache.velocity.runtime.resource.Resource)
-
getCurrentResource
public Resource getCurrentResource()
- See Also:
InternalHousekeepingContext.getCurrentResource()
-
-