public abstract class EvaluationListener
extends java.lang.Object
| Constructor | Description |
|---|---|
EvaluationListener() |
| Modifier and Type | Method | Description |
|---|---|---|
void |
afterEvaluation(ELContext context,
java.lang.String expression) |
Receives notification after an EL expression is evaluated
|
void |
beforeEvaluation(ELContext context,
java.lang.String expression) |
Receives notification before an EL expression is evaluated
|
void |
propertyResolved(ELContext context,
java.lang.Object base,
java.lang.Object property) |
Receives notification when the (base, property) pair is resolved
|
public void beforeEvaluation(ELContext context, java.lang.String expression)
context - The ELContextexpression - The EL expression string to be evaluatedpublic void afterEvaluation(ELContext context, java.lang.String expression)
context - The ELContextexpression - The EL expression string to be evaluatedpublic void propertyResolved(ELContext context, java.lang.Object base, java.lang.Object property)
context - The ELContextbase - The base objectproperty - The property object