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)
Obtain the context object for the given key.
|
abstract ELResolver |
getELResolver() |
abstract FunctionMapper |
getFunctionMapper() |
java.util.Locale |
getLocale() |
abstract VariableMapper |
getVariableMapper() |
boolean |
isPropertyResolved() |
void |
putContext(java.lang.Class key,
java.lang.Object contextObject)
Add an object to this EL context under the given key.
|
void |
setLocale(java.util.Locale locale) |
void |
setPropertyResolved(boolean resolved) |
public java.lang.Object getContext(java.lang.Class key)
key
- The key of the required context objectjava.lang.NullPointerException
- If the supplied key is null
public void putContext(java.lang.Class key, java.lang.Object contextObject) throws java.lang.NullPointerException
key
- The key under which to store the objectcontextObject
- The object to addjava.lang.NullPointerException
- If the supplied key or context is null
public void setPropertyResolved(boolean resolved)
public boolean isPropertyResolved()
public abstract ELResolver getELResolver()
public abstract FunctionMapper getFunctionMapper()
public abstract VariableMapper getVariableMapper()
public java.util.Locale getLocale()
public void setLocale(java.util.Locale locale)
Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.