Interface MutationNameEvent

    • Method Detail

      • getPrevNamespaceURI

        java.lang.String getPrevNamespaceURI()
        The previous value of the relatedNode's namespaceURI.
      • getPrevNodeName

        java.lang.String getPrevNodeName()
        The previous value of the relatedNode's nodeName.
      • initMutationNameEvent

        void initMutationNameEvent​(java.lang.String typeArg,
                                   boolean canBubbleArg,
                                   boolean cancelableArg,
                                   org.w3c.dom.Node relatedNodeArg,
                                   java.lang.String prevNamespaceURIArg,
                                   java.lang.String prevNodeNameArg)
        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.
        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.
        Since:
        DOM Level 3
      • initMutationNameEventNS

        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)
        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.
        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.
        Since:
        DOM Level 3