| org.w3c.dom.events.MutationNameEvent
All known Subclasses: org.apache.batik.dom.events.DOMMutationNameEvent,
MutationNameEvent | public interface MutationNameEvent extends MutationEvent(Code) | | The MutationNameEvent interface provides specific contextual
information associated with Mutation name event types.
To create an instance of the MutationNameEvent interface,
use the Document.createEvent("MutationNameEvent") method
call.
See also the
Document Object Model (DOM) Level 3 Events Specification
.
since: DOM Level 3 |
Method Summary | |
public String | getPrevNamespaceURI() The previous value of the relatedNode 's
namespaceURI . | public String | getPrevNodeName() The previous value of the relatedNode 's
nodeName . | public void | initMutationNameEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevNamespaceURIArg, String prevNodeNameArg) The initMutationNameEvent method is used to initialize
the value of a MutationNameEvent object and has the same
behavior as MutationEvent.initMutationEvent() . | public void | initMutationNameEventNS(String namespaceURI, String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevNamespaceURIArg, String prevNodeNameArg) The initMutationNameEventNS method is used to initialize
the value of a MutationNameEvent object and has the same
behavior as MutationEvent.initMutationEventNS() . |
getPrevNamespaceURI | public String getPrevNamespaceURI()(Code) | | The previous value of the relatedNode 's
namespaceURI .
|
getPrevNodeName | public String getPrevNodeName()(Code) | | The previous value of the relatedNode 's
nodeName .
|
initMutationNameEvent | public void initMutationNameEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevNamespaceURIArg, String prevNodeNameArg)(Code) | | The initMutationNameEvent method is used to initialize
the value of a MutationNameEvent object and has the same
behavior as MutationEvent.initMutationEvent() .
Parameters: typeArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter. Parameters: canBubbleArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter. Parameters: cancelableArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter. Parameters: relatedNodeArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter. Parameters: prevNamespaceURIArg - Specifies MutationNameEvent.prevNamespaceURI . This value may be null . Parameters: prevNodeNameArg - Specifies MutationNameEvent.prevNodeName . since: DOM Level 3 |
initMutationNameEventNS | public void initMutationNameEventNS(String namespaceURI, String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevNamespaceURIArg, String prevNodeNameArg)(Code) | | The initMutationNameEventNS method is used to initialize
the value of a MutationNameEvent object and has the same
behavior as MutationEvent.initMutationEventNS() .
Parameters: namespaceURI - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter. Parameters: typeArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter. Parameters: canBubbleArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter. Parameters: cancelableArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter. Parameters: relatedNodeArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter. Parameters: prevNamespaceURIArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter. Parameters: prevNodeNameArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter. since: DOM Level 3 |
|
|