Interface UIEvent

    • Method Detail

      • getView

        org.w3c.dom.views.AbstractView getView()
        The view attribute identifies the AbstractView from which the event was generated.
      • getDetail

        int getDetail()
        Specifies some detail information about the Event, depending on the type of event.
      • initUIEvent

        void initUIEvent​(java.lang.String typeArg,
                         boolean canBubbleArg,
                         boolean cancelableArg,
                         org.w3c.dom.views.AbstractView viewArg,
                         int detailArg)
        The initUIEvent method is used to initialize the value of a UIEvent object and has the same behavior as Event.initEvent().
        Parameters:
        typeArg - Refer to the Event.initEvent() method for a description of this parameter.
        canBubbleArg - Refer to the Event.initEvent() method for a description of this parameter.
        cancelableArg - Refer to the Event.initEvent() method for a description of this parameter.
        viewArg - Specifies UIEvent.view. This value may be null.
        detailArg - Specifies UIEvent.detail.
      • initUIEventNS

        void initUIEventNS​(java.lang.String namespaceURI,
                           java.lang.String typeArg,
                           boolean canBubbleArg,
                           boolean cancelableArg,
                           org.w3c.dom.views.AbstractView viewArg,
                           int detailArg)
        The initUIEventNS method is used to initialize the value of a UIEvent object and has the same behavior as Event.initEventNS().
        Parameters:
        namespaceURI - Refer to the Event.initEventNS() method for a description of this parameter.
        typeArg - Refer to the Event.initEventNS() method for a description of this parameter.
        canBubbleArg - Refer to the Event.initEventNS() method for a description of this parameter.
        cancelableArg - Refer to the Event.initEventNS() method for a description of this parameter.
        viewArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter.
        detailArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter.
        Since:
        DOM Level 3