java.lang.Object
jakarta.el.VariableMapper
com.sun.faces.facelets.el.VariableMapperWrapper
Utility class for wrapping another VariableMapper with a new context, represented by a 
Map.
 Modifications occur to the Map instance, but resolve against the wrapped VariableMapper if the Map doesn't contain
 the ValueExpression requested.- Version:
- $Id$
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionresolveVariable(String variable) First tries to resolve agains the inner Map, then the wrapped ValueExpression.setVariable(String variable, ValueExpression expression) Set the ValueExpression on the inner Map instance.
- 
Constructor Details- 
VariableMapperWrapper- Parameters:
- orig- the original variable mapper to be wrapped
 
 
- 
- 
Method Details- 
resolveVariableFirst tries to resolve agains the inner Map, then the wrapped ValueExpression.- Specified by:
- resolveVariablein class- VariableMapper
- Parameters:
- variable- The variable name
- Returns:
- the ValueExpression assigned to the variable, null if there is no previous assignment to this variable.
- See Also:
 
- 
setVariableSet the ValueExpression on the inner Map instance.- Specified by:
- setVariablein class- VariableMapper
- Parameters:
- variable- The variable name
- expression- The ValueExpression to be assigned to the variable.
- Returns:
- The previous ValueExpression assigned to this variable, null if there is no previous assignment to this variable.
- See Also:
 
 
-