Package org.apache.batik.w3c.dom.events
Interface MutationNameEvent
-
- All Superinterfaces:
org.w3c.dom.events.Event
,org.w3c.dom.events.MutationEvent
- All Known Implementing Classes:
DOMMutationNameEvent
public interface MutationNameEvent extends org.w3c.dom.events.MutationEvent
TheMutationNameEvent
interface provides specific contextual information associated with Mutation name event types.To create an instance of the
MutationNameEvent
interface, use theDocument.createEvent("MutationNameEvent")
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.String
getPrevNamespaceURI()
The previous value of therelatedNode
'snamespaceURI
.java.lang.String
getPrevNodeName()
The previous value of therelatedNode
'snodeName
.void
initMutationNameEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevNamespaceURIArg, java.lang.String prevNodeNameArg)
TheinitMutationNameEvent
method is used to initialize the value of aMutationNameEvent
object and has the same behavior asMutationEvent.initMutationEvent()
.void
initMutationNameEventNS(java.lang.String namespaceURI, java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevNamespaceURIArg, java.lang.String prevNodeNameArg)
TheinitMutationNameEventNS
method is used to initialize the value of aMutationNameEvent
object and has the same behavior asMutationEvent.initMutationEventNS()
.
-
-
-
Method Detail
-
getPrevNamespaceURI
java.lang.String getPrevNamespaceURI()
The previous value of therelatedNode
'snamespaceURI
.
-
getPrevNodeName
java.lang.String getPrevNodeName()
The previous value of therelatedNode
'snodeName
.
-
initMutationNameEvent
void initMutationNameEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevNamespaceURIArg, java.lang.String prevNodeNameArg)
TheinitMutationNameEvent
method is used to initialize the value of aMutationNameEvent
object and has the same behavior asMutationEvent.initMutationEvent()
.- Parameters:
typeArg
- Refer to theMutationEvent.initMutationEvent()
method for a description of this parameter.canBubbleArg
- Refer to theMutationEvent.initMutationEvent()
method for a description of this parameter.cancelableArg
- Refer to theMutationEvent.initMutationEvent()
method for a description of this parameter.relatedNodeArg
- Refer to theMutationEvent.initMutationEvent()
method for a description of this parameter.prevNamespaceURIArg
- SpecifiesMutationNameEvent.prevNamespaceURI
. This value may benull
.prevNodeNameArg
- SpecifiesMutationNameEvent.prevNodeName
.- Since:
- DOM Level 3
-
initMutationNameEventNS
void initMutationNameEventNS(java.lang.String namespaceURI, java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevNamespaceURIArg, java.lang.String prevNodeNameArg)
TheinitMutationNameEventNS
method is used to initialize the value of aMutationNameEvent
object and has the same behavior asMutationEvent.initMutationEventNS()
.- Parameters:
namespaceURI
- Refer to theMutationEvent.initMutationEventNS()
method for a description of this parameter.typeArg
- Refer to theMutationEvent.initMutationEventNS()
method for a description of this parameter.canBubbleArg
- Refer to theMutationEvent.initMutationEventNS()
method for a description of this parameter.cancelableArg
- Refer to theMutationEvent.initMutationEventNS()
method for a description of this parameter.relatedNodeArg
- Refer to theMutationEvent.initMutationEventNS()
method for a description of this parameter.prevNamespaceURIArg
- Refer to theMutationEvent.initMutationEvent()
method for a description of this parameter.prevNodeNameArg
- Refer to theMutationEvent.initMutationEvent()
method for a description of this parameter.- Since:
- DOM Level 3
-
-