| |
|
| org.radeox.api.engine.context.RenderContext
All known Subclasses: org.radeox.engine.context.BaseRenderContext,
RenderContext | public interface RenderContext (Code) | | RenderContext stores basic data for the context the RenderEngine is called
in. RenderContext can be used by the Engine in whatever way it likes to. The
Radeox RenderEngine uses RenderContext to construct FilterContext.
author: Stephan J. Schmidt version: $Id: RenderContext.java 7707 2006-04-12 17:30:19Z version: ian@caret.cam.ac.uk $ |
DEFAULT_FORMATTER | final public static String DEFAULT_FORMATTER(Code) | | |
INPUT_BUNDLE_NAME | final public static String INPUT_BUNDLE_NAME(Code) | | |
LANGUAGE_BUNDLE_NAME | final public static String LANGUAGE_BUNDLE_NAME(Code) | | |
LANGUAGE_LOCALE | final public static String LANGUAGE_LOCALE(Code) | | |
OUTPUT_BUNDLE_NAME | final public static String OUTPUT_BUNDLE_NAME(Code) | | |
commitCache | public void commitCache()(Code) | | |
getParameters | public Map getParameters()(Code) | | |
getRenderEngine | public RenderEngine getRenderEngine()(Code) | | Returns the RenderEngine handling this request.
engine RenderEngine handling the request within this context |
isCacheable | public boolean isCacheable()(Code) | | |
setCacheable | public void setCacheable(boolean cacheable)(Code) | | |
setParameters | public void setParameters(Map parameters)(Code) | | Set the parameters for this execution context. These parameters are read
when encountering a variable in macros like {search:$query} or by
ParamFilter in {$query}. Query is then read from the parameter map before
given to the macro
Parameters: parameters - Map of parameters with name,value pairs |
setRenderEngine | public void setRenderEngine(RenderEngine engine)(Code) | | Stores the current RenderEngine of the request
Parameters: engine - Current RenderEnginge |
|
|
|