public interface EventParams
Modifier and Type | Interface and Description |
---|---|
static class |
EventParams.Builder
A builder of
EventParams . |
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. |
static EventParams.Builder |
newBuilder()
Creates a new
EventParams builder. |
static EventParams.Builder newBuilder()
EventParams
builder.EventParams.Builder
instancedefault boolean isBubbles()
true
if the event bubbles up through the DOM.default boolean isCancelable()
true
if the event can be canceled, and therefore prevented as if the event
never happened.default boolean isTrusted()
true
if the event is trusted, and therefore was generated by a user action.