public interface UiEventModifierParams extends EventParams
Modifier and Type | Interface and Description |
---|---|
static class |
UiEventModifierParams.Builder
A builder of
UiEventModifierParams . |
Modifier and Type | Method and Description |
---|---|
default boolean |
isBubbles()
Returns
true if the event bubbles up through the DOM. |
default boolean |
isCancelable()
Returns
true if the event can be canceled, and therefore prevented as if the event
never happened. |
default boolean |
isTrusted()
Returns
true if the event is trusted, and therefore was generated by a user action. |
default KeyModifiers |
keyModifiers()
Returns the key modifiers that are applied to the event.
|
static UiEventModifierParams.Builder |
newBuilder()
Creates a new
UiEventModifierParams builder. |
static UiEventModifierParams.Builder newBuilder()
UiEventModifierParams
builder.newBuilder
in interface EventParams
UiEventModifierParams.Builder
instancedefault boolean isBubbles()
true
if the event bubbles up through the DOM.isBubbles
in interface EventParams
default boolean isTrusted()
true
if the event is trusted, and therefore was generated by a user action.isTrusted
in interface EventParams
default boolean isCancelable()
true
if the event can be canceled, and therefore prevented as if the event
never happened.isCancelable
in interface EventParams
default KeyModifiers keyModifiers()