|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.el.ELContext
com.sun.el.lang.EvaluationContext
public final class EvaluationContext
| Field Summary | |
|---|---|
int |
listIndex
|
| Fields inherited from class javax.el.ELContext |
|---|
INCOMPLETE_PATH_RESULT |
| Constructor Summary | |
|---|---|
EvaluationContext(ELContext elContext,
FunctionMapper fnMapper,
VariableMapper varMapper,
Expression expression)
|
|
EvaluationContext(ELContext elContext,
FunctionMapper fnMapper,
VariableMapper varMapper,
Expression expression,
boolean trackResolvedObjects)
|
|
| Method Summary | |
|---|---|
java.lang.Object |
getContext(java.lang.Class key)
Returns the context object associated with the given key. |
ELContext |
getELContext()
|
ELResolver |
getELResolver()
Retrieves the ELResolver associated with this context. |
Expression |
getExpression()
|
FunctionMapper |
getFunctionMapper()
Retrieves the FunctionMapper associated with this
ELContext. |
boolean |
getIncompletePath()
|
java.util.List<Expression.ResolvedObject> |
getResolvedObjects()
|
int |
getResolvingListIndex()
|
VariableMapper |
getVariableMapper()
Retrieves the VariableMapper associated with this
ELContext. |
boolean |
isPropertyResolved()
Returns whether an ELResolver has successfully resolved a
given (base, property) pair. |
void |
putContext(java.lang.Class key,
java.lang.Object contextObject)
Associates a context object with this ELContext. |
void |
reset()
|
void |
resolvingList(java.util.List list)
|
void |
resolvingProperty(java.lang.Object base,
java.lang.Object property)
|
void |
setIncompletePath(boolean incompletePath)
|
void |
setPropertyResolved(boolean resolved)
Called to indicate that a ELResolver has successfully
resolved a given (base, property) pair. |
void |
setResolvingListIndex(int listIndex)
|
| Methods inherited from class javax.el.ELContext |
|---|
getLocale, setLocale |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public int listIndex
| Constructor Detail |
|---|
public EvaluationContext(ELContext elContext,
FunctionMapper fnMapper,
VariableMapper varMapper,
Expression expression)
public EvaluationContext(ELContext elContext,
FunctionMapper fnMapper,
VariableMapper varMapper,
Expression expression,
boolean trackResolvedObjects)
| Method Detail |
|---|
public Expression getExpression()
public ELContext getELContext()
public FunctionMapper getFunctionMapper()
ELContextFunctionMapper associated with this
ELContext.
getFunctionMapper in class ELContextpublic VariableMapper getVariableMapper()
ELContextVariableMapper associated with this
ELContext.
getVariableMapper in class ELContextpublic java.lang.Object getContext(java.lang.Class key)
ELContextThe ELContext maintains a collection of context objects
relevant to the evaluation of an expression. These context objects
are used by ELResolvers. This method is used to
retrieve the context with the given key from the collection.
By convention, the object returned will be of the type specified by
the key. However, this is not required and the key is
used strictly as a unique identifier.
getContext in class ELContextkey - The unique identifier that was used to associate the
context object with this ELContext.
public ELResolver getELResolver()
ELContextELResolver associated with this context.
The ELContext maintains a reference to the
ELResolver that will be consulted to resolve variables
and properties during an expression evaluation. This method
retrieves the reference to the resolver.
Once an ELContext is constructed, the reference to the
ELResolver associated with the context cannot be changed.
getELResolver in class ELContextpublic boolean isPropertyResolved()
ELContextELResolver has successfully resolved a
given (base, property) pair.
The CompositeELResolver checks this property to determine
whether it should consider or skip other component resolvers.
isPropertyResolved in class ELContextCompositeELResolver
public void putContext(java.lang.Class key,
java.lang.Object contextObject)
ELContextELContext.
The ELContext maintains a collection of context objects
relevant to the evaluation of an expression. These context objects
are used by ELResolvers. This method is used to
add a context object to that collection.
By convention, the contextObject will be of the
type specified by the key. However, this is not
required and the key is used strictly as a unique identifier.
putContext in class ELContextkey - The key used by an @{link ELResolver} to identify this
context object.contextObject - The context object to add to the collection.public void setPropertyResolved(boolean resolved)
ELContextELResolver has successfully
resolved a given (base, property) pair.
The CompositeELResolver checks this property to determine
whether it should consider or skip other component resolvers.
setPropertyResolved in class ELContextresolved - true if the property has been resolved, or false if
not.CompositeELResolverpublic void setIncompletePath(boolean incompletePath)
public boolean getIncompletePath()
public void resolvingList(java.util.List list)
public void resolvingProperty(java.lang.Object base,
java.lang.Object property)
public java.util.List<Expression.ResolvedObject> getResolvedObjects()
public void setResolvingListIndex(int listIndex)
public int getResolvingListIndex()
public void reset()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||