Interface ApplicationEvent

All Superinterfaces:
Event
All Known Implementing Classes:
ApplicationEventImpl

public interface ApplicationEvent extends Event
The ApplicationEvent interface provides specific contextual information associated with the ApplicationEvent.
Since:
Epic 4.4.1
  • Method Details

    • getDetail

      int getDetail()
      Specifies detail information about the ApplicationEvent, depending on the type of event.
    • initApplicationEvent

      void initApplicationEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, int detailArg)
      Initializes the value of an ApplicationEvent created through the Application interface. This method should only be called before the ApplicationEvent has been dispatched using the dispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.
      Parameters:
      typeArg - Specifies the event type.
      canBubbleArg - Specifies whether or not the event can bubble.
      cancelableArg - Specifies whether or not the event's default action can be prevented.
      detailArg - Specifies the Event detail.