Package org.loboevolution.events
Interface UIEvent
- All Superinterfaces:
Event
- All Known Subinterfaces:
CompositionEvent
,DragEvent
,FocusEvent
,InputEvent
,KeyboardEvent
,MouseEvent
,PointerEvent
,SVGZoomEvent
,TouchEvent
,WheelEvent
- All Known Implementing Classes:
AnimationEventImpl
,AudioProcessingEventImpl
,BeforeInstallPromptEventImpl
,BeforeUnloadEventImpl
,CompositionEventImpl
,DragEventImpl
,FocusEventImpl
,InputEventImpl
,KeyboardEventImpl
,MouseEventImpl
,PointerEventImpl
,StorageEventImpl
,TouchEventImpl
,UIEventImpl
,WheelEventImpl
The UIEvent interface represents simple user interface events.
- See Also:
-
Field Summary
Fields inherited from interface org.loboevolution.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE, NONE
-
Method Summary
Modifier and TypeMethodDescriptionThe UIEvent.detail read-only property, when non-zero, provides the current (or next, depending on the event) click count.getView()
The UIEvent.view read-only property returns the WindowProxy object from which the event was generated.getWhich()
void
initUIEvent
(String typeArg) The UIEvent.initUIEvent() method initializes a UI event once it's been created.void
initUIEvent
(String typeArg, Boolean bubblesArg) The UIEvent.initUIEvent() method initializes a UI event once it's been created.void
initUIEvent
(String typeArg, Boolean bubblesArg, boolean cancelableArg) The UIEvent.initUIEvent() method initializes a UI event once it's been created.void
initUIEvent
(String typeArg, Boolean bubblesArg, boolean cancelableArg, Window viewArg) The UIEvent.initUIEvent() method initializes a UI event once it's been created.void
initUIEvent
(String typeArg, Boolean bubblesArg, boolean cancelableArg, Window viewArg, Double detailArg) The UIEvent.initUIEvent() method initializes a UI event once it's been created.Methods inherited from interface org.loboevolution.events.Event
getBubbles, getCancelable, getComposed, getComposedPath, getCurrentTarget, getDefaultPrevented, getEventPhase, getReturnValue, getSrcElement, getStopImmediatePropagation, getStopPropagation, getTarget, getTimeStamp, getTrusted, getType, initEvent, initEvent, initEvent, preventDefault
-
Method Details
-
getDetail
Double getDetail()The UIEvent.detail read-only property, when non-zero, provides the current (or next, depending on the event) click count.- See Also:
-
getView
Window getView()The UIEvent.view read-only property returns the WindowProxy object from which the event was generated. In browsers, this is the Window object the event happened in.- See Also:
-
getWhich
Double getWhich() -
initUIEvent
void initUIEvent(String typeArg, Boolean bubblesArg, boolean cancelableArg, Window viewArg, Double detailArg) The UIEvent.initUIEvent() method initializes a UI event once it's been created.- See Also:
-
initUIEvent
The UIEvent.initUIEvent() method initializes a UI event once it's been created.- See Also:
-
initUIEvent
The UIEvent.initUIEvent() method initializes a UI event once it's been created.- See Also:
-
initUIEvent
The UIEvent.initUIEvent() method initializes a UI event once it's been created.- See Also:
-
initUIEvent
The UIEvent.initUIEvent() method initializes a UI event once it's been created.- See Also:
-