Class 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 Detail

      • prevNamespaceURI

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

        protected java.lang.String prevNodeName
        The node's previous name.
    • Constructor Detail

      • DOMMutationNameEvent

        public DOMMutationNameEvent()
    • 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 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​(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 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.
      • getPrevNodeName

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