Package jakarta.el
Class ELContextEvent
- java.lang.Object
 - 
- java.util.EventObject
 - 
- jakarta.el.ELContextEvent
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class ELContextEvent extends EventObject
An event which indicates that anELContexthas been created. The source object is the ELContext that was created.- Since:
 - Jakarta Server Pages 2.1
 - See Also:
 ELContext,ELContextListener, Serialized Form
 
- 
- 
Field Summary
- 
Fields inherited from class java.util.EventObject
source 
 - 
 
- 
Constructor Summary
Constructors Constructor Description ELContextEvent(ELContext source)Constructs an ELContextEvent object to indicate that anELContexthas been created. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ELContextgetELContext()Returns theELContextthat was created.- 
Methods inherited from class java.util.EventObject
getSource, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ELContextEvent
public ELContextEvent(ELContext source)
Constructs an ELContextEvent object to indicate that anELContexthas been created.- Parameters:
 source- theELContextthat was created.
 
 - 
 
- 
Method Detail
- 
getELContext
public ELContext getELContext()
Returns theELContextthat was created. This is a type-safe equivalent of theEventObject.getSource()method.- Returns:
 - the ELContext that was created.
 
 
 - 
 
 -