Class ELContextEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.camunda.bpm.engine.impl.javax.el.ELContextEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class ELContextEvent extends java.util.EventObject
An event which indicates that anELContext
has been created. The source object is the ELContext that was created.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ELContextEvent(ELContext source)
Constructs an ELContextEvent object to indicate that an ELContext has been created.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ELContext
getELContext()
Returns the ELContext that was created.
-
-
-
Constructor Detail
-
ELContextEvent
public ELContextEvent(ELContext source)
Constructs an ELContextEvent object to indicate that an ELContext has been created.- Parameters:
source
- the ELContext that was created.
-
-
Method Detail
-
getELContext
public ELContext getELContext()
Returns the ELContext that was created. This is a type-safe equivalent of the java.util.EventObject.getSource() method.- Returns:
- the ELContext that was created.
-
-