Class DOMTextEvent

    • Field Detail

      • data

        protected java.lang.String data
        The text data.
    • Constructor Detail

      • DOMTextEvent

        public DOMTextEvent()
    • Method Detail

      • getData

        public java.lang.String getData()
        Returns the text data.
        Specified by:
        getData in interface TextEvent
      • initTextEvent

        public void initTextEvent​(java.lang.String typeArg,
                                  boolean canBubbleArg,
                                  boolean cancelableArg,
                                  org.w3c.dom.views.AbstractView viewArg,
                                  java.lang.String dataArg)
        DOM: Initializes this TextEvent.
        Specified by:
        initTextEvent in interface TextEvent
        Parameters:
        typeArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter.
        canBubbleArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter.
        cancelableArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter.
        viewArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter.
        dataArg - Specifies TextEvent.data.
      • initTextEventNS

        public void initTextEventNS​(java.lang.String namespaceURIArg,
                                    java.lang.String typeArg,
                                    boolean canBubbleArg,
                                    boolean cancelableArg,
                                    org.w3c.dom.views.AbstractView viewArg,
                                    java.lang.String dataArg)
        DOM: Initializes this TextEvent.
        Specified by:
        initTextEventNS in interface TextEvent
        Parameters:
        namespaceURIArg - Refer to the UIEvent.initUIEventNS() method for a description of this parameter.
        typeArg - Refer to the UIEvent.initUIEventNS() method for a description of this parameter.
        canBubbleArg - Refer to the UIEvent.initUIEventNS() method for a description of this parameter.
        cancelableArg - Refer to the UIEvent.initUIEventNS() method for a description of this parameter.
        viewArg - Refer to the UIEvent.initUIEventNS() method for a description of this parameter.
        dataArg - Refer to the TextEvent.initTextEvent() method for a description of this parameter.