| 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. |