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.createCustomEvent(EventType eventType, CustomEventParams params) Document.createEvent(EventType eventType, EventParams params) Document.createMouseEvent(EventType eventType, MouseEventParams params) Creates and returns a newMouseEventobject with the giveneventTypeandparams.Document.createWheelEvent(EventType eventType, WheelEventParams params) Creates and returns a newWheelEventobject with the giveneventTypeandparams. -
Uses of EventType in com.teamdev.jxbrowser.dom.event
Fields in com.teamdev.jxbrowser.dom.event declared as EventTypeModifier and TypeFieldDescriptionstatic final EventTypeEventType.ABORTstatic final EventTypeEventType.BLURstatic final EventTypeEventType.CHANGEstatic final EventTypeEventType.CLICKstatic final EventTypeEventType.DOUBLE_CLICKstatic final EventTypeEventType.ERRORstatic final EventTypeEventType.FOCUSstatic final EventTypeEventType.KEY_DOWNstatic final EventTypeEventType.KEY_PRESSstatic final EventTypeEventType.KEY_UPstatic final EventTypeEventType.LOADstatic final EventTypeEventType.MOUSE_DOWNstatic final EventTypeEventType.MOUSE_ENTERstatic final EventTypeEventType.MOUSE_MOVEstatic final EventTypeEventType.MOUSE_OUTstatic final EventTypeEventType.MOUSE_OVERstatic final EventTypeEventType.MOUSE_UPstatic final EventTypeEventType.RESETstatic final EventTypeEventType.RESIZEstatic final EventTypeEventType.SCROLLstatic final EventTypeEventType.SELECTstatic final EventTypeEventType.SUBMITstatic final EventTypeEventType.TOUCH_CANCELstatic final EventTypeEventType.TOUCH_ENDstatic final EventTypeEventType.TOUCH_MOVEstatic final EventTypeEventType.TOUCH_STARTstatic final EventTypeEventType.UNLOADstatic final EventTypeEventType.WHEELMethods in com.teamdev.jxbrowser.dom.event that return EventTypeModifier and TypeMethodDescriptionstatic EventTypeReturns theEventTypeinstance for the giveneventName.Event.type()Returns the event type.Methods in com.teamdev.jxbrowser.dom.event with parameters of type EventTypeModifier and TypeMethodDescriptionvoidEventTarget.addEventListener(EventType eventType, Observer<Event> listener, boolean useCapture) Adds the givenlistenerto the event target.EventTarget.eventListeners(EventType eventType, boolean useCapture) Returns the immutable list of event listeners that listen events of the giveneventTypein a phase that corresponds the givenuseCapture.voidEventTarget.removeEventListener(EventType eventType, Observer<Event> listener, boolean useCapture) Removes the givenlistenerfrom the event target.