Package javax.el
Class EvaluationListener
java.lang.Object
javax.el.EvaluationListener
- Since:
- EL 3.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterEvaluation
(ELContext context, String expression) Fired after the evaluation of the expression.void
beforeEvaluation
(ELContext context, String expression) Fired before the evaluation of the expression.void
propertyResolved
(ELContext context, Object base, Object property) Fired after a property has been resolved.
-
Constructor Details
-
EvaluationListener
public EvaluationListener()
-
-
Method Details
-
beforeEvaluation
Fired before the evaluation of the expression.- Parameters:
context
- The EL context in which the expression will be evaluatedexpression
- The expression that will be evaluated
-
afterEvaluation
Fired after the evaluation of the expression.- Parameters:
context
- The EL context in which the expression was evaluatedexpression
- The expression that was evaluated
-
propertyResolved
Fired after a property has been resolved.- Parameters:
context
- The EL context in which the property was resolvedbase
- The base object on which the property was resolvedproperty
- The property that was resolved
-