Package org.apache.batik.dom.events
Class DOMMutationNameEvent
- java.lang.Object
-
- org.apache.batik.dom.events.AbstractEvent
-
- org.apache.batik.dom.events.DOMMutationEvent
-
- org.apache.batik.dom.events.DOMMutationNameEvent
-
- All Implemented Interfaces:
java.lang.Cloneable
,OriginalEvent
,MutationNameEvent
,org.w3c.dom.events.Event
,org.w3c.dom.events.MutationEvent
public class DOMMutationNameEvent extends DOMMutationEvent implements MutationNameEvent
Class to implement DOM 3 MutationName events.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
prevNamespaceURI
The node's previous namespace URI.protected java.lang.String
prevNodeName
The node's previous name.-
Fields inherited from class org.apache.batik.dom.events.AbstractEvent
bubbleLimit, cancelable, currentTarget, defaultActions, eventPhase, isBubbling, namespaceURI, originalEvent, preventDefault, stopImmediatePropagation, stopPropagation, target, timeStamp, type
-
-
Constructor Summary
Constructors Constructor Description DOMMutationNameEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPrevNamespaceURI()
Gets the node's previous namespace URI.java.lang.String
getPrevNodeName()
Gets the node's previous node name.void
initMutationNameEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevNamespaceURIArg, java.lang.String prevNodeNameArg)
Initializes this MutationNameEvent.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)
Initializes this MutationNameEvent.-
Methods inherited from class org.apache.batik.dom.events.DOMMutationEvent
getAttrChange, getAttrName, getNewValue, getPrevValue, getRelatedNode, initMutationEvent, initMutationEventNS
-
Methods inherited from class org.apache.batik.dom.events.AbstractEvent
addDefaultAction, clone, cloneEvent, getBubbleLimit, getBubbles, getCancelable, getCurrentTarget, getDefaultActions, getDefaultPrevented, getEventPhase, getNamespaceURI, getOriginalEvent, getTarget, getTimeStamp, getType, initEvent, initEventNS, preventDefault, setBubbleLimit, stopImmediatePropagation, stopPropagation
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
initMutationNameEvent
public void initMutationNameEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevNamespaceURIArg, java.lang.String prevNodeNameArg)
Initializes this MutationNameEvent.- Specified by:
initMutationNameEvent
in interfaceMutationNameEvent
- 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
.
-
initMutationNameEventNS
public 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)
Initializes this MutationNameEvent.- Specified by:
initMutationNameEventNS
in interfaceMutationNameEvent
- 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.
-
getPrevNamespaceURI
public java.lang.String getPrevNamespaceURI()
Gets the node's previous namespace URI.- Specified by:
getPrevNamespaceURI
in interfaceMutationNameEvent
-
getPrevNodeName
public java.lang.String getPrevNodeName()
Gets the node's previous node name.- Specified by:
getPrevNodeName
in interfaceMutationNameEvent
-
-