javax.el
Class VariableMapper
java.lang.Object
javax.el.VariableMapper
public abstract class VariableMapper
- extends java.lang.Object
The interface to a map between EL variables and the EL expressions
they are associated with.
- Since:
- JSP 2.1
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
VariableMapper
public VariableMapper()
resolveVariable
public abstract ValueExpression resolveVariable(java.lang.String variable)
- Parameters:
variable
- The variable name
- Returns:
- the ValueExpression assigned to the variable,
null if there is no previous assignment to this variable.
setVariable
public abstract ValueExpression setVariable(java.lang.String variable,
ValueExpression expression)
- Assign a ValueExpression to an EL variable, replacing
any previously assignment to the same variable.
The assignment for the variable is removed if
the expression is
null
.
- Parameters:
variable
- The variable nameexpression
- The ValueExpression to be assigned
to the variable.
- Returns:
- The previous ValueExpression assigned to this variable,
null if there is no previouse assignment to this variable.
Submit a bug or feature Copyright © 2009, 2010, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms.
Generated on 4-June-2010 04:34