Uses of Interface
com.teamdev.jxbrowser.dom.event.Event
Package
Description
Provides the interfaces and classes for the Document Object Model (DOM).
Contains the classes and interfaces of the DOM events.
-
Uses of Event in com.teamdev.jxbrowser.dom
-
Uses of Event in com.teamdev.jxbrowser.dom.event
Modifier and TypeInterfaceDescriptioninterface
A custom DOM event.interface
A keyboard event that provides access to the keyboard event data.interface
A mouse event that provides access to the mouse event data.interface
A DOM UI event that can be fired with the key modifiers.interface
A wheel event that provides access to the wheel event data.Modifier and TypeMethodDescriptionEventTarget.eventListeners
(EventType eventType, boolean useCapture) Returns the immutable list of event listeners that listen events of the giveneventType
in a phase that corresponds the givenuseCapture
.Modifier and TypeMethodDescriptionboolean
Dispatches the givenevent
at the current event target.Modifier and TypeMethodDescriptionvoid
EventTarget.addEventListener
(EventType eventType, Observer<Event> listener, boolean useCapture) Adds the givenlistener
to the event target.void
EventTarget.removeEventListener
(EventType eventType, Observer<Event> listener, boolean useCapture) Removes the givenlistener
from the event target.