Package javax.el
Class StandardELContext
- java.lang.Object
- 
- javax.el.ELContext
- 
- javax.el.StandardELContext
 
 
- 
 public class StandardELContext extends ELContext - Since:
- EL 3.0
 
- 
- 
Constructor SummaryConstructors Constructor Description StandardELContext(ELContext context)StandardELContext(ExpressionFactory factory)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddELResolver(ELResolver resolver)java.lang.ObjectgetContext(java.lang.Class key)Obtain the context object for the given key.ELResolvergetELResolver()FunctionMappergetFunctionMapper()VariableMappergetVariableMapper()voidputContext(java.lang.Class key, java.lang.Object contextObject)Add an object to this EL context under the given key.- 
Methods inherited from class javax.el.ELContextaddEvaluationListener, convertToType, enterLambdaScope, exitLambdaScope, getEvaluationListeners, getImportHandler, getLambdaArgument, getLocale, isLambdaArgument, isPropertyResolved, notifyAfterEvaluation, notifyBeforeEvaluation, notifyPropertyResolved, setLocale, setPropertyResolved, setPropertyResolved
 
- 
 
- 
- 
- 
Constructor Detail- 
StandardELContextpublic StandardELContext(ExpressionFactory factory) 
 - 
StandardELContextpublic StandardELContext(ELContext context) 
 
- 
 - 
Method Detail- 
putContextpublic void putContext(java.lang.Class key, java.lang.Object contextObject)Description copied from class:ELContextAdd an object to this EL context under the given key.- Overrides:
- putContextin class- ELContext
- Parameters:
- key- The key under which to store the object
- contextObject- The object to add
 
 - 
getContextpublic java.lang.Object getContext(java.lang.Class key) Description copied from class:ELContextObtain the context object for the given key.- Overrides:
- getContextin class- ELContext
- Parameters:
- key- The key of the required context object
- Returns:
- The value of the context object associated with the given key
 
 - 
getELResolverpublic ELResolver getELResolver() - Specified by:
- getELResolverin class- ELContext
 
 - 
addELResolverpublic void addELResolver(ELResolver resolver) 
 - 
getFunctionMapperpublic FunctionMapper getFunctionMapper() - Specified by:
- getFunctionMapperin class- ELContext
 
 - 
getVariableMapperpublic VariableMapper getVariableMapper() - Specified by:
- getVariableMapperin class- ELContext
 
 
- 
 
-