Uses of Interface
com.teamdev.jxbrowser.dom.event.EventType
Packages that use EventType
Package
Description
Provides the interfaces and classes for the Document Object Model (DOM).
Contains the classes and interfaces of the DOM events.
-
Uses of EventType in com.teamdev.jxbrowser.dom
Methods in com.teamdev.jxbrowser.dom with parameters of type EventTypeModifier and TypeMethodDescriptionDocument.createEvent
(EventType eventType, EventParams params) Document.createMouseEvent
(EventType eventType, MouseEventParams params) Creates and returns a newMouseEvent
object with the giveneventType
andparams
.Document.createWheelEvent
(EventType eventType, WheelEventParams params) Creates and returns a newWheelEvent
object with the giveneventType
andparams
. -
Uses of EventType in com.teamdev.jxbrowser.dom.event
Fields in com.teamdev.jxbrowser.dom.event declared as EventTypeModifier and TypeFieldDescriptionstatic final EventType
EventType.ABORT
static final EventType
EventType.BLUR
static final EventType
EventType.CHANGE
static final EventType
EventType.CLICK
static final EventType
EventType.DOUBLE_CLICK
static final EventType
EventType.ERROR
static final EventType
EventType.FOCUS
static final EventType
EventType.KEY_DOWN
static final EventType
EventType.KEY_PRESS
static final EventType
EventType.KEY_UP
static final EventType
EventType.LOAD
static final EventType
EventType.MOUSE_DOWN
static final EventType
EventType.MOUSE_ENTER
static final EventType
EventType.MOUSE_MOVE
static final EventType
EventType.MOUSE_OUT
static final EventType
EventType.MOUSE_OVER
static final EventType
EventType.MOUSE_UP
static final EventType
EventType.RESET
static final EventType
EventType.RESIZE
static final EventType
EventType.SCROLL
static final EventType
EventType.SELECT
static final EventType
EventType.SUBMIT
static final EventType
EventType.UNLOAD
static final EventType
EventType.WHEEL
Methods in com.teamdev.jxbrowser.dom.event that return EventTypeModifier and TypeMethodDescriptionstatic EventType
Returns theEventType
instance for the giveneventName
.Event.type()
Returns the event type.Methods in com.teamdev.jxbrowser.dom.event with parameters of type EventTypeModifier and TypeMethodDescriptionvoid
EventTarget.addEventListener
(EventType eventType, Observer<Event> listener, boolean useCapture) Adds the givenlistener
to the event target.EventTarget.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
.void
EventTarget.removeEventListener
(EventType eventType, Observer<Event> listener, boolean useCapture) Removes the givenlistener
from the event target.