Package javax.el
Class EvaluationListener
- java.lang.Object
- 
- javax.el.EvaluationListener
 
- 
 public abstract class EvaluationListener extends java.lang.Object- Since:
- EL 3.0
 
- 
- 
Constructor SummaryConstructors Constructor Description EvaluationListener()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterEvaluation(ELContext context, java.lang.String expression)Fired after the evaluation of the expression.voidbeforeEvaluation(ELContext context, java.lang.String expression)Fired before the evaluation of the expression.voidpropertyResolved(ELContext context, java.lang.Object base, java.lang.Object property)Fired after a property has been resolved.
 
- 
- 
- 
Method Detail- 
beforeEvaluationpublic void beforeEvaluation(ELContext context, java.lang.String expression) Fired before the evaluation of the expression.- Parameters:
- context- The EL context in which the expression will be evaluated
- expression- The expression that will be evaluated
 
 - 
afterEvaluationpublic void afterEvaluation(ELContext context, java.lang.String expression) Fired after the evaluation of the expression.- Parameters:
- context- The EL context in which the expression was evaluated
- expression- The expression that was evaluated
 
 - 
propertyResolvedpublic void propertyResolved(ELContext context, java.lang.Object base, java.lang.Object property) Fired after a property has been resolved.- Parameters:
- context- The EL context in which the property was resolved
- base- The base object on which the property was resolved
- property- The property that was resolved
 
 
- 
 
-