public abstract class ELContext
extends java.lang.Object
Constructor and Description |
---|
ELContext() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getContext(java.lang.Class key)
Returns the context object associated with the specified key.
|
abstract ELResolver |
getELResolver()
Returns the resolver for this context.
|
abstract FunctionMapper |
getFunctionMapper()
Returns the function mapper for this context.
|
java.util.Locale |
getLocale()
Returns the locale in use for this context.
|
abstract VariableMapper |
getVariableMapper()
Returns the variable mapper for this context.
|
boolean |
isPropertyResolved()
Indicates whether a resolver has resolved a property.
|
void |
putContext(java.lang.Class key,
java.lang.Object contextObject)
Associate a context object with this context.
|
void |
setLocale(java.util.Locale locale)
Sets the locale to use for this context.
|
void |
setPropertyResolved(boolean resolved)
Called by ELResolver to indicate successful resolution of a property.
|
public void setPropertyResolved(boolean resolved)
public boolean isPropertyResolved()
public void putContext(java.lang.Class key, java.lang.Object contextObject) throws java.lang.NullPointerException
java.lang.NullPointerException
public java.lang.Object getContext(java.lang.Class key)
public abstract ELResolver getELResolver()
public abstract FunctionMapper getFunctionMapper()
public java.util.Locale getLocale()
public void setLocale(java.util.Locale locale)
public abstract VariableMapper getVariableMapper()