Package | Description |
---|---|
com.teamdev.jxbrowser.dom |
Provides the interfaces and classes for the Document Object Model (DOM).
|
com.teamdev.jxbrowser.dom.event |
Contains the classes and interfaces of the DOM events.
|
Modifier and Type | Method and Description |
---|---|
Event |
Document.createEvent(EventType eventType,
EventParams params)
|
Modifier and Type | Interface and Description |
---|---|
interface |
CustomEvent
A custom DOM event.
|
interface |
KeyEvent
A keyboard event that provides access to the keyboard event data.
|
interface |
MouseEvent
A mouse event that provides access to the mouse event data.
|
interface |
UiEventModifier
A DOM UI event that can be fired with the key modifiers.
|
interface |
WheelEvent
A wheel event that provides access to the wheel event data.
|
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 |
---|---|
boolean |
EventTarget.dispatch(Event event)
Dispatches the given
event at the current event target. |
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. |