public abstract class AbstractProcessingContext extends Object implements IProcessingContext
| Modifier and Type | Field and Description |
|---|---|
protected static String |
EVAL_SELECTION_TARGET_LOCAL_VARIABLE_NAME |
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractProcessingContext(IContext context) |
protected |
AbstractProcessingContext(IContext context,
Map<String,Object> localVariables) |
protected |
AbstractProcessingContext(IContext context,
Map<String,Object> localVariables,
Object selectionTarget,
boolean selectionTargetSet) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,Object> |
computeExpressionObjects() |
IContext |
getContext()
Returns the current context specified for template processing.
|
Object |
getExpressionEvaluationRoot()
Returns the current evaluation root.
|
Map<String,Object> |
getExpressionObjects()
Returns the map of expression objects that should be made available to every expression
evaluation operation (whenever variable evaluation is available).
|
Object |
getExpressionSelectionEvaluationRoot()
Returns the current selection evaluation root.
|
Object |
getLocalVariable(String variableName)
Returns the value of a local variable.
|
Map<String,Object> |
getLocalVariables()
Returns the map of local variables.
|
Object |
getSelectionTarget()
Returns the selection target object, and raises an
exception if there isn't any.
|
boolean |
hasLocalVariable(String variableName)
Returns whether a specific local variable is defined or not.
|
boolean |
hasLocalVariables()
Returns whether local variables have currently been specified or not.
|
boolean |
hasSelectionTarget()
Returns whether there currently is a selection going on
(e.g.
|
protected Map<String,Object> |
mergeNewLocalVariables(Map<String,Object> newVariables) |
protected static final String EVAL_SELECTION_TARGET_LOCAL_VARIABLE_NAME
protected AbstractProcessingContext(IContext context)
protected AbstractProcessingContext(IContext context, Map<String,Object> localVariables)
public Map<String,Object> getExpressionObjects()
IProcessingContextReturns the map of expression objects that should be made available to every expression evaluation operation (whenever variable evaluation is available). In OGNL and SpringEL expressions, these will be available as #object1, #object2, etc.
This method cannot return null, and must return a modifiable Map object (which will, in fact, be modified).
getExpressionObjects in interface IProcessingContextpublic IContext getContext()
IProcessingContextReturns the current context specified for template processing.
getContext in interface IProcessingContextpublic Object getExpressionEvaluationRoot()
IProcessingContextReturns the current evaluation root. This is the object on which expressions (normal expressions, like those specified in the standard dialect with ${...}) are executed.
getExpressionEvaluationRoot in interface IProcessingContextpublic Object getExpressionSelectionEvaluationRoot()
IProcessingContextReturns the current selection evaluation root. This is the object on which selection expressions (like those specified in the standard dialect with *{...}) are executed.
getExpressionSelectionEvaluationRoot in interface IProcessingContextpublic boolean hasSelectionTarget()
IProcessingContextReturns whether there currently is a selection going on (e.g. th:object in standard dialect).
hasSelectionTarget in interface IProcessingContextpublic Object getSelectionTarget()
IProcessingContextReturns the selection target object, and raises an exception if there isn't any.
Meant for internal use.
getSelectionTarget in interface IProcessingContextpublic boolean hasLocalVariables()
IProcessingContextReturns whether local variables have currently been specified or not. (e.g. th:with in standard dialect).
hasLocalVariables in interface IProcessingContextpublic boolean hasLocalVariable(String variableName)
IProcessingContextReturns whether a specific local variable is defined or not.
hasLocalVariable in interface IProcessingContextvariableName - the name of the local variable to be checked.public Object getLocalVariable(String variableName)
IProcessingContextReturns the value of a local variable.
getLocalVariable in interface IProcessingContextvariableName - the name of the local variable to be returned.public Map<String,Object> getLocalVariables()
IProcessingContextReturns the map of local variables.
getLocalVariables in interface IProcessingContextCopyright © 2016 The THYMELEAF team. All rights reserved.