public class DOMCustomEvent extends DOMEvent implements CustomEvent
Modifier and Type | Field and Description |
---|---|
protected java.lang.Object |
detail
The custom detail associated with this event.
|
bubbleLimit, cancelable, currentTarget, defaultActions, eventPhase, isBubbling, namespaceURI, originalEvent, preventDefault, stopImmediatePropagation, stopPropagation, target, timeStamp, type
Constructor and Description |
---|
DOMCustomEvent() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getDetail()
Returns the custom detail of this event.
|
void |
initCustomEventNS(java.lang.String namespaceURIArg,
java.lang.String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
java.lang.Object detailArg)
Initializes this custom event.
|
addDefaultAction, clone, cloneEvent, getBubbleLimit, getBubbles, getCancelable, getCurrentTarget, getDefaultActions, getDefaultPrevented, getEventPhase, getNamespaceURI, getOriginalEvent, getStopImmediatePropagation, getStopPropagation, getTarget, getTimeStamp, getType, initEvent, initEventNS, preventDefault, preventDefault, setBubbleLimit, setCurrentTarget, setEventPhase, setTarget, stopImmediatePropagation, stopImmediatePropagation, stopPropagation, stopPropagation
public java.lang.Object getDetail()
getDetail
in interface CustomEvent
public void initCustomEventNS(java.lang.String namespaceURIArg, java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, java.lang.Object detailArg)
initCustomEventNS
in interface CustomEvent
namespaceURIArg
- Refer to the Event.initEventNS()
method for a description of this parameter.typeArg
- Refer to the Event.initEventNS()
method
for a description of this parameter.canBubbleArg
- Refer to the Event.initEventNS()
method for a description of this parameter.cancelableArg
- Refer to the Event.initEventNS()
method for a description of this parameter.detailArg
- Specifies CustomEvent.detail
. This
value may be null
.