@DOMObjectAttribute @DOMNameAttribute(name="EventListener") public interface IEventListener
The IEventListener
interface is the primary method for handling events.
Users implement the IEventListener
interface and register their listener on an EventTarget
using the EventTarget.addEventListener(String, DOMEventHandler, boolean)
method.
The users should also remove their IEventListener
from its EventTarget
after they have completed using the listener.
Modifier and Type | Method and Description |
---|---|
void |
handleEvent(Event event)
This method is called whenever an event occurs of the type for which the
IEventListener interface was registered. |
@DOMNameAttribute(name="handleEvent") void handleEvent(Event event)
This method is called whenever an event occurs of the type for which the IEventListener
interface was registered.
event
- The Event
contains contextual information about the event.
It also contains the Event.stopPropagation()
and Event.preventDefault()
methods which are used in determining the event's flow and default action.