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 giveneventTypein a phase that corresponds the givenuseCapture.Methods in com.teamdev.jxbrowser.dom.event with parameters of type ObserverModifier and TypeMethodDescriptionvoidEventTarget.addEventListener(EventType eventType, Observer<Event> listener, boolean useCapture) Adds the givenlistenerto the event target.voidEventTarget.removeEventListener(EventType eventType, Observer<Event> listener, boolean useCapture) Removes the givenlistenerfrom 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 eventobserverto receive the events of the giveneventClass.