Package org.apache.batik.dom.events
Class DOMTextEvent
java.lang.Object
org.apache.batik.dom.events.AbstractEvent
org.apache.batik.dom.events.DOMUIEvent
org.apache.batik.dom.events.DOMTextEvent
- All Implemented Interfaces:
Cloneable
,OriginalEvent
,TextEvent
,Event
,UIEvent
Class to implement DOM 3 Text events.
-
Field Summary
FieldsFields inherited from class org.apache.batik.dom.events.AbstractEvent
bubbleLimit, cancelable, currentTarget, defaultActions, eventPhase, isBubbling, namespaceURI, originalEvent, preventDefault, stopImmediatePropagation, stopPropagation, target, timeStamp, type
Fields inherited from interface org.w3c.dom.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetData()
Returns the text data.void
initTextEvent
(String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, String dataArg) DOM: Initializes this TextEvent.void
initTextEventNS
(String namespaceURIArg, String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, String dataArg) DOM: Initializes this TextEvent.Methods inherited from class org.apache.batik.dom.events.DOMUIEvent
getDetail, getView, initUIEvent, initUIEventNS, split
Methods inherited from class org.apache.batik.dom.events.AbstractEvent
addDefaultAction, clone, cloneEvent, getBubbleLimit, getBubbles, getCancelable, getCurrentTarget, getDefaultActions, getDefaultPrevented, getEventPhase, getNamespaceURI, getOriginalEvent, getTarget, getTimeStamp, getType, initEvent, initEventNS, preventDefault, setBubbleLimit, stopImmediatePropagation, stopPropagation
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.w3c.dom.events.Event
getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation
Methods inherited from interface org.w3c.dom.events.UIEvent
getDetail, getView, initUIEvent
-
Field Details
-
data
The text data.
-
-
Constructor Details
-
DOMTextEvent
public DOMTextEvent()
-
-
Method Details
-
getData
Returns the text data. -
initTextEvent
public void initTextEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, String dataArg) DOM: Initializes this TextEvent.- Specified by:
initTextEvent
in interfaceTextEvent
- Parameters:
typeArg
- Refer to theUIEvent.initUIEvent()
method for a description of this parameter.canBubbleArg
- Refer to theUIEvent.initUIEvent()
method for a description of this parameter.cancelableArg
- Refer to theUIEvent.initUIEvent()
method for a description of this parameter.viewArg
- Refer to theUIEvent.initUIEvent()
method for a description of this parameter.dataArg
- SpecifiesTextEvent.data
.
-
initTextEventNS
public void initTextEventNS(String namespaceURIArg, String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, String dataArg) DOM: Initializes this TextEvent.- Specified by:
initTextEventNS
in interfaceTextEvent
- Parameters:
namespaceURIArg
- Refer to theUIEvent.initUIEventNS()
method for a description of this parameter.typeArg
- Refer to theUIEvent.initUIEventNS()
method for a description of this parameter.canBubbleArg
- Refer to theUIEvent.initUIEventNS()
method for a description of this parameter.cancelableArg
- Refer to theUIEvent.initUIEventNS()
method for a description of this parameter.viewArg
- Refer to theUIEvent.initUIEventNS()
method for a description of this parameter.dataArg
- Refer to theTextEvent.initTextEvent()
method for a description of this parameter.
-