Uses of Interface
org.w3c.dom.events.EventTarget

Packages that use EventTarget
gnu.xml.dom This is a Free Software DOM Level 2 implementation, supporting these features: "XML", "Events", "MutationEvents", "HTMLEvents" (won't generate them though), "UIEvents" (also won't generate them), "USER-Events" (a conformant extension), and "Traversal" (optional; no TreeWalker yet). 
org.w3c.dom.events Supports the optional "Events", "UIEvents", "MouseEvents", "MutationEvents", and "HTMLEvents" features of the DOM Level 2 Recommendation. 
 

Uses of EventTarget in gnu.xml.dom
 

Classes in gnu.xml.dom that implement EventTarget
 class DomAttr
           "Attr" implementation.
 class DomCDATA
           "CDATASection" implementation.
 class DomCharacterData
           Abstract "CharacterData" implementation.
 class DomComment
           "Comment" implementation.
 class DomDoctype
           "DocumentType" implementation (with no extensions for supporting any document typing information).
 class DomDocument
           "Document" and "DocumentTraversal" implementation.
 class DomElement
           "Element" implementation.
 class DomEntity
           "Entity" implementation.
 class DomEntityReference
           "EntityReference" implementation (reference to parsed entity).
 class DomExtern
           Abstract implemention of nodes describing external DTD-related objects.
 class DomFragment
           "DocumentFragment" implementation.
 class DomNode
           "Node", "EventTarget", and "DocumentEvent" implementation.
 class DomNotation
           "Notation" implementation.
 class DomNsNode
           Abstract implemention of namespace support.
 class DomPI
           "ProcessingInstruction" (PI) implementation.
 class DomText
           "Text" implementation.
 

Methods in gnu.xml.dom that return EventTarget
 EventTarget DomEvent.getTarget()
          Returns event's target; delivery of an event is initiated by a target.dispatchEvent(event) invocation.
 EventTarget DomEvent.getCurrentTarget()
          Returns the target to which events are currently being delivered.
 

Uses of EventTarget in org.w3c.dom.events
 

Methods in org.w3c.dom.events that return EventTarget
 EventTarget MouseEvent.getRelatedTarget()
          Used to identify a secondary EventTarget related to a UI event.
 EventTarget Event.getTarget()
          Used to indicate the EventTarget to which the event was originally dispatched.
 EventTarget Event.getCurrentTarget()
          Used to indicate the EventTarget whose EventListeners are currently being processed.
 

Methods in org.w3c.dom.events with parameters of type EventTarget
 void MouseEvent.initMouseEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg, int screenXArg, int screenYArg, int clientXArg, int clientYArg, boolean ctrlKeyArg, boolean altKeyArg, boolean shiftKeyArg, boolean metaKeyArg, short buttonArg, EventTarget relatedTargetArg)
          The initMouseEvent method is used to initialize the value of a MouseEvent created through the DocumentEvent interface.
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2001-11-20.