Package javax.el
Class EvaluationListener
java.lang.Object
javax.el.EvaluationListener
The listener interface for receiving notification when an
EL expression is evaluated.
- Since:
- EL 3.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterEvaluation
(ELContext context, String expression) Receives notification after an EL expression is evaluatedvoid
beforeEvaluation
(ELContext context, String expression) Receives notification before an EL expression is evaluatedvoid
propertyResolved
(ELContext context, Object base, Object property) Receives notification when the (base, property) pair is resolved
-
Constructor Details
-
EvaluationListener
public EvaluationListener()
-
-
Method Details
-
beforeEvaluation
Receives notification before an EL expression is evaluated- Parameters:
context
- The ELContextexpression
- The EL expression string to be evaluated
-
afterEvaluation
Receives notification after an EL expression is evaluated- Parameters:
context
- The ELContextexpression
- The EL expression string to be evaluated
-
propertyResolved
Receives notification when the (base, property) pair is resolved- Parameters:
context
- The ELContextbase
- The base objectproperty
- The property object
-