Class ChainedVelocityContext
- java.lang.Object
-
- org.apache.velocity.context.AbstractContext
-
- org.apache.velocity.VelocityContext
-
- com.atlassian.confluence.velocity.context.ChainedVelocityContext
-
- All Implemented Interfaces:
DefaultValueStackProvider,Cloneable,org.apache.struts2.util.ValueStackProvider,org.apache.velocity.context.Context,org.apache.velocity.context.InternalEventContext
public final class ChainedVelocityContext extends org.apache.velocity.VelocityContext implements DefaultValueStackProvider
Extends the defaultVelocityContextto ensure that thegetKeys()method returns all keys from the current context and the chained context.
-
-
Constructor Summary
Constructors Constructor Description ChainedVelocityContext(org.apache.velocity.context.Context delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.velocity.app.event.EventCartridgeattachEventCartridge(org.apache.velocity.app.event.EventCartridge arg0)booleangetAllowRendering()intgetCurrentMacroCallDepth()StringgetCurrentMacroName()org.apache.velocity.runtime.resource.ResourcegetCurrentResource()StringgetCurrentTemplateName()org.apache.velocity.app.event.EventCartridgegetEventCartridge()Object[]getKeys()This method is inherently unreliable because if the chained context has another chained context, it may not delegate correctly if it is using the default implementation inAbstractContext.ListgetMacroLibraries()Object[]getMacroNameStack()Object[]getTemplateNameStack()org.apache.velocity.util.introspection.IntrospectionCacheDataicacheGet(Object arg0)voidicachePut(Object arg0, org.apache.velocity.util.introspection.IntrospectionCacheData arg1)voidpopCurrentMacroName()voidpopCurrentTemplateName()voidpushCurrentMacroName(String arg0)voidpushCurrentTemplateName(String arg0)voidsetAllowRendering(boolean arg0)voidsetCurrentResource(org.apache.velocity.runtime.resource.Resource arg0)voidsetMacroLibraries(List arg0)-
Methods inherited from class org.apache.velocity.VelocityContext
clone, internalContainsKey, internalGet, internalGetKeys, internalPut, internalRemove
-
Methods inherited from class org.apache.velocity.context.AbstractContext
containsKey, get, getChainedContext, put, remove
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.atlassian.confluence.velocity.context.DefaultValueStackProvider
getValueStack
-
-
-
-
Method Detail
-
getKeys
public Object[] getKeys()
This method is inherently unreliable because if the chained context has another chained context, it may not delegate correctly if it is using the default implementation inAbstractContext.- Specified by:
getKeysin interfaceorg.apache.velocity.context.Context- Overrides:
getKeysin classorg.apache.velocity.context.AbstractContext
-
pushCurrentTemplateName
public void pushCurrentTemplateName(String arg0)
-
popCurrentTemplateName
public void popCurrentTemplateName()
-
getCurrentTemplateName
public String getCurrentTemplateName()
-
getTemplateNameStack
public Object[] getTemplateNameStack()
-
pushCurrentMacroName
public void pushCurrentMacroName(String arg0)
-
popCurrentMacroName
public void popCurrentMacroName()
-
getCurrentMacroName
public String getCurrentMacroName()
-
getCurrentMacroCallDepth
public int getCurrentMacroCallDepth()
-
getMacroNameStack
public Object[] getMacroNameStack()
-
icacheGet
public org.apache.velocity.util.introspection.IntrospectionCacheData icacheGet(Object arg0)
-
icachePut
public void icachePut(Object arg0, org.apache.velocity.util.introspection.IntrospectionCacheData arg1)
-
setCurrentResource
public void setCurrentResource(org.apache.velocity.runtime.resource.Resource arg0)
-
getCurrentResource
public org.apache.velocity.runtime.resource.Resource getCurrentResource()
-
getAllowRendering
public boolean getAllowRendering()
-
setAllowRendering
public void setAllowRendering(boolean arg0)
-
setMacroLibraries
public void setMacroLibraries(List arg0)
-
getMacroLibraries
public List getMacroLibraries()
-
attachEventCartridge
public org.apache.velocity.app.event.EventCartridge attachEventCartridge(org.apache.velocity.app.event.EventCartridge arg0)
- Specified by:
attachEventCartridgein interfaceorg.apache.velocity.context.InternalEventContext
-
getEventCartridge
public org.apache.velocity.app.event.EventCartridge getEventCartridge()
- Specified by:
getEventCartridgein interfaceorg.apache.velocity.context.InternalEventContext
-
-