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.EventObjectAn event which indicates that anELContexthas been created. The source object is the ELContext that was created.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ELContextEvent(ELContext source)Constructs an ELContextEvent object to indicate that an ELContext has been created.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ELContextgetELContext()Returns the ELContext that was created.
 
- 
- 
- 
Constructor Detail- 
ELContextEventpublic ELContextEvent(ELContext source) Constructs an ELContextEvent object to indicate that an ELContext has been created.- Parameters:
- source- the ELContext that was created.
 
 
- 
 - 
Method Detail- 
getELContextpublic 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.
 
 
- 
 
-