Uses of Interface
com.teamdev.jxbrowser.event.Observer
Packages that use 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
Methods in com.teamdev.jxbrowser.dom.event that return types with arguments of type ObserverModifier 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 ObserverModifier 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
Methods in com.teamdev.jxbrowser.event with parameters of type ObserverModifier and TypeMethodDescription<E extends T>
SubscriptionSubscribes the given eventobserver
to receive the events of the giveneventClass
.