This is the implementation of VariableMapper. The compiler creates an empty variable mapper when an ELContext is created. The variable mapper will be updated by tag handlers, if necessary.
Constructor map = new HashMap();
map = new HashMap();
Resolves the specified variable within the given context. Returns null if the variable is not found. return (ValueExpression) map.get(variable);
return (ValueExpression) map.get(variable);
ValueExpression prev = null; if (expression == null) { map.remove(variable); } else { prev = (ValueExpression) map.get(variable); map.put(variable, expression); } return prev;