Package org.apache.jasper.runtime
Class ELContextImpl
- java.lang.Object
-
- javax.el.ELContext
-
- org.apache.jasper.runtime.ELContextImpl
-
public class ELContextImpl extends javax.el.ELContextConcrete implementation ofELContext. ELContext's constructor is protected to control creation of ELContext objects through their appropriate factory methods. This version of ELContext forces construction through JspApplicationContextImpl.- Author:
- Mark Roth, Kin-man Chung
-
-
Constructor Summary
Constructors Constructor Description ELContextImpl(javax.el.ELResolver resolver)Constructs a new ELContext associated with the given ELResolver.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.el.ELResolvergetELResolver()javax.el.FunctionMappergetFunctionMapper()javax.el.VariableMappergetVariableMapper()voidsetFunctionMapper(javax.el.FunctionMapper fnMapper)voidsetVariableMapper(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
-
-
-
-
Method Detail
-
getELResolver
public javax.el.ELResolver getELResolver()
- Specified by:
getELResolverin classjavax.el.ELContext
-
setFunctionMapper
public void setFunctionMapper(javax.el.FunctionMapper fnMapper)
-
getFunctionMapper
public javax.el.FunctionMapper getFunctionMapper()
- Specified by:
getFunctionMapperin classjavax.el.ELContext
-
setVariableMapper
public void setVariableMapper(javax.el.VariableMapper varMapper)
-
getVariableMapper
public javax.el.VariableMapper getVariableMapper()
- Specified by:
getVariableMapperin classjavax.el.ELContext
-
-