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

Packages that use EventListener
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 EventListener in gnu.xml.dom
 

Classes in gnu.xml.dom that implement EventListener
 class DomIterator
           "NodeIterator" implementation, usable with any L2 DOM which supports MutationEvents.
 

Methods in gnu.xml.dom with parameters of type EventListener
 void DomNode.addEventListener(java.lang.String type, EventListener listener, boolean useCapture)
          DOM L2 (Events) Registers an event listener's interest in a class of events.
 void DomNode.removeEventListener(java.lang.String type, EventListener listener, boolean useCapture)
          DOM L2 (Events) Unregisters an event listener.
 

Uses of EventListener in org.w3c.dom.events
 

Methods in org.w3c.dom.events with parameters of type EventListener
 void EventTarget.addEventListener(java.lang.String type, EventListener listener, boolean useCapture)
          This method allows the registration of event listeners on the event target.
 void EventTarget.removeEventListener(java.lang.String type, EventListener listener, boolean useCapture)
          This method allows the removal of event listeners from the event target.
 



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.