Uses of Interface
com.teamdev.jxbrowser.event.Observer
Package
Description
Contains the classes and interfaces of the DOM events.
The engine and browser events.
-
Uses of Observer in com.teamdev.jxbrowser.dom.event
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 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. -
Uses of Observer in com.teamdev.jxbrowser.event
Modifier and TypeMethodDescription<E extends T>
SubscriptionSubscribes the given eventobserver
to receive the events of the giveneventClass
.