Package org.apache.batik.w3c.dom.events
Interface CustomEvent
-
- All Superinterfaces:
org.w3c.dom.events.Event
- All Known Implementing Classes:
DOMCustomEvent
public interface CustomEvent extends org.w3c.dom.events.Event
The CustomEvent interface is the recommended interface for application-specific event types. Unlike theEvent
interface, it allows applications to provide contextual information about the event type. Application-specific event types should have an associated namespace to avoid clashes with future general-purpose event types.To create an instance of the
CustomEvent
interface, use theDocumentEvent.createEvent("CustomEvent")
method call.See also the Document Object Model (DOM) Level 3 Events Specification .
- Since:
- DOM Level 3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getDetail()
Specifies some detail information about theEvent
.void
initCustomEventNS(java.lang.String namespaceURI, java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, java.lang.Object detailArg)
TheinitCustomEventNS
method is used to initialize the value of aCustomEvent
object and has the same behavior asEvent.initEventNS()
.
-
-
-
Method Detail
-
getDetail
java.lang.Object getDetail()
Specifies some detail information about theEvent
.
-
initCustomEventNS
void initCustomEventNS(java.lang.String namespaceURI, java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, java.lang.Object detailArg)
TheinitCustomEventNS
method is used to initialize the value of aCustomEvent
object and has the same behavior asEvent.initEventNS()
.- Parameters:
namespaceURI
- Refer to theEvent.initEventNS()
method for a description of this parameter.typeArg
- Refer to theEvent.initEventNS()
method for a description of this parameter.canBubbleArg
- Refer to theEvent.initEventNS()
method for a description of this parameter.cancelableArg
- Refer to theEvent.initEventNS()
method for a description of this parameter.detailArg
- SpecifiesCustomEvent.detail
. This value may benull
.
-
-