java.lang.Object
java.util.EventObject
jakarta.el.ELContextEvent
- All Implemented Interfaces:
 Serializable
An event which indicates that an 
ELContext has been created. The source object is the ELContext that was
 created.- Since:
 - Jakarta Server Pages 2.1
 - See Also:
 
- 
Field Summary
Fields inherited from class java.util.EventObject
source - 
Constructor Summary
ConstructorsConstructorDescriptionELContextEvent(ELContext source) Constructs an ELContextEvent object to indicate that anELContexthas been created. - 
Method Summary
Modifier and TypeMethodDescriptionReturns theELContextthat was created.Methods inherited from class java.util.EventObject
getSource, toString 
- 
Constructor Details
- 
ELContextEvent
Constructs an ELContextEvent object to indicate that anELContexthas been created.- Parameters:
 source- theELContextthat was created.
 
 - 
 - 
Method Details
- 
getELContext
Returns theELContextthat was created. This is a type-safe equivalent of theEventObject.getSource()method.- Returns:
 - the ELContext that was created.
 
 
 -