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

Packages that use EventListener
org.w3c.dom.events The org.w3c.dom.events package provides the Java ME DOM Events API subset defined by JSR 280. 
 

Uses of EventListener in org.w3c.dom.events
 

Methods in org.w3c.dom.events with parameters of type EventListener
 void EventTarget.addEventListener(String type, EventListener listener, boolean useCapture)
          This method allows the registration of event listeners on the event target.
 void EventTarget.removeEventListener(String type, EventListener listener, boolean useCapture)
          This method allows the removal of event listeners from the event target.
 void EventTarget.addEventListenerNS(String namespaceURI, String type, EventListener listener, boolean useCapture)
          This method allows the registration of an event listener in a specified group or the default group and, depending on the useCapture parameter, on the capture phase of the DOM event flow or its target and bubbling phases.
 void EventTarget.removeEventListenerNS(String namespaceURI, String type, EventListener listener, boolean useCapture)
          This method allows the removal of an event listener, independently of the associated event group.
 



Copyright © 2000,2004 World Wide Web Consortium (W3C). See the Copyright Notice for details.