| org.apache.velocity.context.InternalWrapperContext
InternalWrapperContext | public interface InternalWrapperContext (Code) | | interface for internal context wrapping functionality
author: Geir Magnusson Jr. version: $Id: InternalWrapperContext.java 471908 2006-11-06 22:39:28Z henning $ |
Method Summary | |
InternalContextAdapter | getBaseContext() Returns the base full context impl. | Context | getInternalUserContext() Returns the wrapped user context. | Object | localPut(String key, Object value) Allows callers to explicitly put objects in the local context.
Objects added to the context through this method always end up
in the top-level context of possible wrapped contexts.
Parameters: key - name of item to set. Parameters: value - object to set to key. |
getInternalUserContext | Context getInternalUserContext()(Code) | | Returns the wrapped user context.
The wrapped user context. |
localPut | Object localPut(String key, Object value)(Code) | | Allows callers to explicitly put objects in the local context.
Objects added to the context through this method always end up
in the top-level context of possible wrapped contexts.
Parameters: key - name of item to set. Parameters: value - object to set to key. old stored object |
|
|