All Known Implementing Classes:
Header1_1Impl, DeferredAttrImpl, Body1_1Impl, ElementNSImpl, DeferredDocumentImpl, SVGAElement, DocumentImpl, CoreDocumentImpl, DeferredAttrNSImpl, ElementImpl, SVGGElement, Detail1_2Impl, DetailEntry1_2Impl, DocumentTypeImpl, DeferredElementImpl, SVGCircleElement, NodeImpl, SVGImageElement, SVGAnimateTransformElement, SVGSVGElement, SVGTRefElement, EnvelopeImpl, DeferredCDATASectionImpl, DeferredEntityImpl, SOAPDocumentImpl, CDATAImpl, SVGUseElement, SVGAnimateElement, DeferredTextImpl, SVGTextPathElement, CharacterDataImpl, ProcessingInstructionImpl, FaultImpl, SVGDefsElement, FaultElementImpl, HeaderElement1_1Impl, PSVIDocumentImpl, EntityReferenceImpl, SVGAltGlyphElement, SVGTSpanElement, SVGTextElement, BodyImpl, HeaderElement1_2Impl, HeaderImpl, PSVIAttrNSImpl, SVGTextPositioningElement, FaultElement1_1Impl, DeferredCommentImpl, BodyElement1_2Impl, HeaderElementImpl, Envelope1_1Impl, Detail1_1Impl, TextImpl, TextImpl, DetailImpl, NotationImpl, DeferredElementDefinitionImpl, DeferredElementNSImpl, DetailEntryImpl, FaultElement1_2Impl, DocumentFragmentImpl, ChildNode, SVGLineElement, ParentNode, SVGSwitchElement, SVGEllipseElement, SVGTextContentElement, AttrImpl, SVGPolylineElement, SVGPolygonElement, PSVIElementNSImpl, ElementDefinitionImpl, BodyElement1_1Impl, DeferredDocumentTypeImpl, SVGSetElement, SVGAnimateColorElement, SVGSymbolElement, DeferredProcessingInstructionImpl, SVGElementInstance, CommentImpl, DetailEntry1_1Impl, SVGForeignObjectElement, SVGAnimationElement, SOAPDocumentFragment, Fault1_1Impl, Fault1_2Impl, SVGAnimateMotionElement, ElementImpl, CDATASectionImpl, DeferredNotationImpl, EntityImpl, AttrNSImpl, Envelope1_2Impl, Body1_2Impl, SVGPathElement, Header1_2Impl, DeferredEntityReferenceImpl, CommentImpl, BodyElementImpl, SVGRectElement
EventTarget interface is implemented by all
Nodes in an implementation which supports the DOM Event
Model. Therefore, this interface can be obtained by using
binding-specific casting methods on an instance of the Node
interface. The interface allows registration and removal of
EventListeners on an EventTarget and dispatch
of events to that EventTarget.
See also the Document Object Model (DOM) Level 2 Events Specification.
DOM - Level 2| Method from org.w3c.dom.events.EventTarget Summary: |
|---|
| addEventListener, dispatchEvent, removeEventListener |
| Method from org.w3c.dom.events.EventTarget Detail: |
|---|
EventListener is added to an
EventTarget while it is processing an event, it will not
be triggered by the current actions but may be triggered during a
later stage of event flow, such as the bubbling phase.
If multiple identical EventListeners are registered
on the same EventTarget with the same parameters the
duplicate instances are discarded. They do not cause the
EventListener to be called twice and since they are
discarded they do not need to be removed with the
removeEventListener method. |
EventTarget on which dispatchEvent is
called. |
EventListener is removed from an
EventTarget while it is processing an event, it will not
be triggered by the current actions. EventListeners can
never be invoked after being removed.
Calling removeEventListener with arguments which do
not identify any currently registered EventListener on
the EventTarget has no effect. |