Package | Description |
---|---|
com.teamdev.jxbrowser.dom.event |
Contains the classes and interfaces of the DOM events.
|
com.teamdev.jxbrowser.event |
The engine and browser events.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Observer<Event>> |
EventTarget.eventListeners(EventType eventType,
boolean useCapture)
Returns the immutable list of event listeners that listen events of the given
eventType in a phase that corresponds the given useCapture . |
Modifier and Type | Method and Description |
---|---|
void |
EventTarget.addEventListener(EventType eventType,
Observer<Event> listener,
boolean useCapture)
Adds the given
listener to the event target. |
void |
EventTarget.removeEventListener(EventType eventType,
Observer<Event> listener,
boolean useCapture)
Removes the given
listener from the event target. |
Modifier and Type | Method and Description |
---|---|
<E extends T> |
Observable.on(java.lang.Class<E> eventClass,
Observer<E> observer)
Subscribes the given event
observer to receive the events of the given eventClass . |