java.lang.Object
jakarta.el.ELContext
com.sun.faces.el.ELContextImpl
-
Constructor Summary
ConstructorsConstructorDescriptionELContextImpl(ELResolver resolver) Constructs a new ELContext associated with the given ELResolver.ELContextImpl(FacesContext facesContext) -
Method Summary
Modifier and TypeMethodDescriptionRetrieves theELResolverassociated with this context.Retrieves theFunctionMapperassociated with thisELContext.Retrieves theVariableMapperassociated with thisELContext.voidsetFunctionMapper(FunctionMapper functionMapper) Methods inherited from class jakarta.el.ELContext
addEvaluationListener, convertToType, enterLambdaScope, exitLambdaScope, getContext, getEvaluationListeners, getImportHandler, getLambdaArgument, getLocale, isLambdaArgument, isPropertyResolved, notifyAfterEvaluation, notifyBeforeEvaluation, notifyPropertyResolved, putContext, setLocale, setPropertyResolved, setPropertyResolved
-
Constructor Details
-
ELContextImpl
Constructs a new ELContext associated with the given ELResolver.- Parameters:
resolver- the ELResolver to return fromgetELResolver()
-
ELContextImpl
-
-
Method Details
-
getFunctionMapper
Description copied from class:ELContextRetrieves theFunctionMapperassociated with thisELContext.- Specified by:
getFunctionMapperin classELContext- Returns:
- The function mapper to be consulted for the resolution of Jakarta Expression Language functions.
-
getVariableMapper
Description copied from class:ELContextRetrieves theVariableMapperassociated with thisELContext.- Specified by:
getVariableMapperin classELContext- Returns:
- The variable mapper to be consulted for the resolution of Jakarta Expression Language variables.
-
getELResolver
Description copied from class:ELContextRetrieves theELResolverassociated with this context.The
ELContextmaintains a reference to theELResolverthat will be consulted to resolve variables and properties during an expression evaluation. This method retrieves the reference to the resolver.Once an
ELContextis constructed, the reference to theELResolverassociated with the context cannot be changed.- Specified by:
getELResolverin classELContext- Returns:
- The resolver to be consulted for variable and property resolution during expression evaluation.
-
setFunctionMapper
-