Uses of Interface
com.teamdev.jxbrowser.dom.event.Event
Packages that use 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
Methods in com.teamdev.jxbrowser.dom that return Event -
Uses of Event in com.teamdev.jxbrowser.dom.event
Subinterfaces of Event in com.teamdev.jxbrowser.dom.eventModifier 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.Methods in com.teamdev.jxbrowser.dom.event that return types with arguments of type EventModifier 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
.Methods in com.teamdev.jxbrowser.dom.event with parameters of type EventModifier and TypeMethodDescriptionboolean
Dispatches the givenevent
at the current event target.Method parameters in com.teamdev.jxbrowser.dom.event with type arguments of type EventModifier 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.