public abstract class ELContext extends Object
Constructor and Description |
---|
ELContext() |
Modifier and Type | Method and Description |
---|---|
Object |
getContext(Class key)
Obtain the context object for the given key.
|
abstract ELResolver |
getELResolver() |
abstract FunctionMapper |
getFunctionMapper() |
Locale |
getLocale() |
abstract VariableMapper |
getVariableMapper() |
boolean |
isPropertyResolved() |
void |
putContext(Class key,
Object contextObject)
Add an object to this EL context under the given key.
|
void |
setLocale(Locale locale) |
void |
setPropertyResolved(boolean resolved) |
public void setPropertyResolved(boolean resolved)
public boolean isPropertyResolved()
public void putContext(Class key, Object contextObject)
key
- The key under which to store the objectcontextObject
- The object to addNullPointerException
- If the supplied key or context is null
public Object getContext(Class key)
key
- The key of the required context objectNullPointerException
- If the supplied key is null
public abstract ELResolver getELResolver()
public abstract FunctionMapper getFunctionMapper()
public Locale getLocale()
public void setLocale(Locale locale)
public abstract VariableMapper getVariableMapper()
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.