Package com.sun.faces.facelets.el
Class VariableMapperWrapper
- java.lang.Object
-
- jakarta.el.VariableMapper
-
- com.sun.faces.facelets.el.VariableMapperWrapper
-
public class VariableMapperWrapper extends jakarta.el.VariableMapperUtility class for wrapping another VariableMapper with a new context, represented by aMap. Modifications occur to the Map instance, but resolve against the wrapped VariableMapper if the Map doesn't contain the ValueExpression requested.- Version:
- $Id$
- Author:
- Jacob Hookom
-
-
Constructor Summary
Constructors Constructor Description VariableMapperWrapper(jakarta.el.VariableMapper orig)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.el.ValueExpressionresolveVariable(String variable)First tries to resolve agains the inner Map, then the wrapped ValueExpression.jakarta.el.ValueExpressionsetVariable(String variable, jakarta.el.ValueExpression expression)Set the ValueExpression on the inner Map instance.
-
-
-
Method Detail
-
resolveVariable
public jakarta.el.ValueExpression resolveVariable(String variable)
First tries to resolve agains the inner Map, then the wrapped ValueExpression.- Specified by:
resolveVariablein classjakarta.el.VariableMapper- See Also:
VariableMapper.resolveVariable(java.lang.String)
-
setVariable
public jakarta.el.ValueExpression setVariable(String variable, jakarta.el.ValueExpression expression)
Set the ValueExpression on the inner Map instance.- Specified by:
setVariablein classjakarta.el.VariableMapper- See Also:
VariableMapper.setVariable(java.lang.String, jakarta.el.ValueExpression)
-
-