Package org.apache.jasper.runtime
Class ELContextImpl
java.lang.Object
javax.el.ELContext
org.apache.jasper.runtime.ELContextImpl
public class ELContextImpl
extends javax.el.ELContext
Concrete implementation of
ELContext
.
ELContext's constructor is protected to control creation of ELContext
objects through their appropriate factory methods. This version of
ELContext forces construction through JspApplicationContextImpl.-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate javax.el.FunctionMapper
private javax.el.ELResolver
private javax.el.VariableMapper
-
Constructor Summary
ConstructorsConstructorDescriptionELContextImpl
(javax.el.ELResolver resolver) Constructs a new ELContext associated with the given ELResolver. -
Method Summary
Modifier and TypeMethodDescriptionjavax.el.ELResolver
javax.el.FunctionMapper
javax.el.VariableMapper
void
setFunctionMapper
(javax.el.FunctionMapper fnMapper) void
setVariableMapper
(javax.el.VariableMapper varMapper) Methods inherited from class javax.el.ELContext
addEvaluationListener, convertToType, enterLambdaScope, exitLambdaScope, getContext, getEvaluationListeners, getImportHandler, getLambdaArgument, getLocale, isLambdaArgument, isPropertyResolved, notifyAfterEvaluation, notifyBeforeEvaluation, notifyPropertyResolved, putContext, setLocale, setPropertyResolved, setPropertyResolved
-
Field Details
-
functionMapper
private javax.el.FunctionMapper functionMapper -
variableMapper
private javax.el.VariableMapper variableMapper -
resolver
private javax.el.ELResolver resolver
-
-
Constructor Details
-
ELContextImpl
public ELContextImpl(javax.el.ELResolver resolver) Constructs a new ELContext associated with the given ELResolver.
-
-
Method Details
-
getELResolver
public javax.el.ELResolver getELResolver()- Specified by:
getELResolver
in classjavax.el.ELContext
-
setFunctionMapper
public void setFunctionMapper(javax.el.FunctionMapper fnMapper) -
getFunctionMapper
public javax.el.FunctionMapper getFunctionMapper()- Specified by:
getFunctionMapper
in classjavax.el.ELContext
-
setVariableMapper
public void setVariableMapper(javax.el.VariableMapper varMapper) -
getVariableMapper
public javax.el.VariableMapper getVariableMapper()- Specified by:
getVariableMapper
in classjavax.el.ELContext
-