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.- Version:
- $Id: DOMMutationNameEvent.java 1830681 2018-05-01 13:38:53Z ssteiner $
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringprevNamespaceURIThe node's previous namespace URI.protected java.lang.StringprevNodeNameThe 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.StringgetPrevNamespaceURI()Gets the node's previous namespace URI.java.lang.StringgetPrevNodeName()Gets the node's previous node name.voidinitMutationNameEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.Node relatedNodeArg, java.lang.String prevNamespaceURIArg, java.lang.String prevNodeNameArg)Initializes this MutationNameEvent.voidinitMutationNameEventNS(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, getStopImmediatePropagation, getStopPropagation, getTarget, getTimeStamp, getType, initEvent, initEventNS, preventDefault, preventDefault, setBubbleLimit, setCurrentTarget, setEventPhase, setTarget, stopImmediatePropagation, stopImmediatePropagation, stopPropagation, 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:
initMutationNameEventin 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:
initMutationNameEventNSin 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:
getPrevNamespaceURIin interfaceMutationNameEvent
-
getPrevNodeName
public java.lang.String getPrevNodeName()
Gets the node's previous node name.- Specified by:
getPrevNodeNamein interfaceMutationNameEvent
-
-