Package com.arbortext.epic
Interface ApplicationEvent
- All Superinterfaces:
Event
- All Known Implementing Classes:
ApplicationEventImpl
The
ApplicationEvent interface provides specific contextual
information associated with the ApplicationEvent.- Since:
- Epic 4.4.1
-
Field Summary
Fields inherited from interface org.w3c.dom.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE -
Method Summary
Modifier and TypeMethodDescriptionintSpecifies detail information about theApplicationEvent, depending on the type of event.voidinitApplicationEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, int detailArg) Initializes the value of anApplicationEventcreated through theApplicationinterface.Methods inherited from interface org.w3c.dom.events.Event
getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation
-
Method Details
-
getDetail
int getDetail()Specifies detail information about theApplicationEvent, depending on the type of event. -
initApplicationEvent
void initApplicationEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, int detailArg) Initializes the value of anApplicationEventcreated through theApplicationinterface. This method should only be called before theApplicationEventhas been dispatched using thedispatchEventmethod, 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 theEventdetail.
-