Package com.teamdev.jxbrowser.dom.event
Interface UiEventModifierParams
- All Superinterfaces:
EventParams
- All Known Subinterfaces:
KeyEventParams
,MouseEventParams
,WheelEventParams
The DOM UI event parameters with the key modifiers.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Returnstrue
if the event bubbles up through the DOM.default boolean
Returnstrue
if the event can be canceled, and therefore prevented as if the event never happened.default boolean
Returnstrue
if the event is trusted, and therefore was generated by a user action.default KeyModifiers
Returns the key modifiers that are applied to the event.Creates a newUiEventModifierParams
builder.
-
Method Details
-
newBuilder
Creates a newUiEventModifierParams
builder.- Returns:
- a new
UiEventModifierParams.Builder
instance
-
isBubbles
default boolean isBubbles()Returnstrue
if the event bubbles up through the DOM.- Specified by:
isBubbles
in interfaceEventParams
-
isTrusted
default boolean isTrusted()Returnstrue
if the event is trusted, and therefore was generated by a user action.- Specified by:
isTrusted
in interfaceEventParams
- Since:
- 7.12
-
isCancelable
default boolean isCancelable()Returnstrue
if the event can be canceled, and therefore prevented as if the event never happened.- Specified by:
isCancelable
in interfaceEventParams
-
keyModifiers
Returns the key modifiers that are applied to the event.
-