Class DOMMutationNameEvent

All Implemented Interfaces:
Cloneable, OriginalEvent, MutationNameEvent, Event, 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 Details

    • prevNamespaceURI

      protected String prevNamespaceURI
      The node's previous namespace URI.
    • prevNodeName

      protected String prevNodeName
      The node's previous name.
  • Constructor Details

    • DOMMutationNameEvent

      public DOMMutationNameEvent()
  • Method Details

    • initMutationNameEvent

      public void initMutationNameEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevNamespaceURIArg, String prevNodeNameArg)
      Initializes this MutationNameEvent.
      Specified by:
      initMutationNameEvent in interface MutationNameEvent
      Parameters:
      typeArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter.
      canBubbleArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter.
      cancelableArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter.
      relatedNodeArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter.
      prevNamespaceURIArg - Specifies MutationNameEvent.prevNamespaceURI. This value may be null.
      prevNodeNameArg - Specifies MutationNameEvent.prevNodeName.
    • initMutationNameEventNS

      public void initMutationNameEventNS(String namespaceURI, String typeArg, boolean canBubbleArg, boolean cancelableArg, Node relatedNodeArg, String prevNamespaceURIArg, String prevNodeNameArg)
      Initializes this MutationNameEvent.
      Specified by:
      initMutationNameEventNS in interface MutationNameEvent
      Parameters:
      namespaceURI - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter.
      typeArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter.
      canBubbleArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter.
      cancelableArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter.
      relatedNodeArg - Refer to the MutationEvent.initMutationEventNS() method for a description of this parameter.
      prevNamespaceURIArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter.
      prevNodeNameArg - Refer to the MutationEvent.initMutationEvent() method for a description of this parameter.
    • getPrevNamespaceURI

      public String getPrevNamespaceURI()
      Gets the node's previous namespace URI.
      Specified by:
      getPrevNamespaceURI in interface MutationNameEvent
    • getPrevNodeName

      public String getPrevNodeName()
      Gets the node's previous node name.
      Specified by:
      getPrevNodeName in interface MutationNameEvent