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

Packages that use EventListener
org.w3c.dom.events   
 

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 an event listener in 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.addEventListenerNS(String namespaceURI, String type, EventListener listener, boolean useCapture, Object evtGroup)
          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.removeEventListener(String type, EventListener listener, boolean useCapture)
          This method allows the removal of event listeners from the default group.
 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–2017 Apache Software Foundation. All rights reserved.