Uses of Class
org.pepstock.charba.client.dom.enums.EventButton
-
Packages that use EventButton Package Description org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.dom.enums Contains enumerations used inside the DOM tree to set properties or invokes methods of elements or items.org.pepstock.charba.client.dom.events Contains all classes to map and manage DOM events. -
-
Uses of EventButton in org.pepstock.charba.client.commons
Fields in org.pepstock.charba.client.commons declared as EventButton Modifier and Type Field Description static EventButton[]
ArrayUtil. EMPTY_EVENT_BUTTON_ARRAY
An empty immutableEventButton
array.Methods in org.pepstock.charba.client.commons that return EventButton Modifier and Type Method Description static EventButton[]
ArrayUtil. toEventButtons(List<EventButton> list)
Returns an array of dates from a list.Method parameters in org.pepstock.charba.client.commons with type arguments of type EventButton Modifier and Type Method Description static EventButton[]
ArrayUtil. toEventButtons(List<EventButton> list)
Returns an array of dates from a list. -
Uses of EventButton in org.pepstock.charba.client.dom.enums
Methods in org.pepstock.charba.client.dom.enums that return EventButton Modifier and Type Method Description static EventButton
EventButton. mapToButton(int button)
Scans all items of enumeration to get the right button related to passed argument.
See NativeAstatic EventButton
EventButton. valueOf(String name)
Returns the enum constant of this type with the specified name.static EventButton[]
EventButton. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.pepstock.charba.client.dom.enums that return types with arguments of type EventButton Modifier and Type Method Description static List<EventButton>
EventButton. mapToButtons(int buttons)
Scans all items of enumeration to get the list of buttons related to passed argument.Methods in org.pepstock.charba.client.dom.enums with parameters of type EventButton Modifier and Type Method Description static int
EventButton. parseToButtons(EventButton... buttons)
Returns thebuttons
value to use as it's managed in the DOM.Method parameters in org.pepstock.charba.client.dom.enums with type arguments of type EventButton Modifier and Type Method Description static int
EventButton. parseToButtons(List<EventButton> buttons)
Returns thebuttons
value to use as it's managed in the DOM. -
Uses of EventButton in org.pepstock.charba.client.dom.events
Methods in org.pepstock.charba.client.dom.events that return EventButton Modifier and Type Method Description EventButton
MouseEventInit. getButton()
Returns aEventButton
that describes which button is pressed during events related to the press or release of a button.EventButton
NativeAbstractMouseEvent. getButton()
Returns the button that was pressed (if applicable) when the mouse event was fired.Methods in org.pepstock.charba.client.dom.events that return types with arguments of type EventButton Modifier and Type Method Description List<EventButton>
MouseEventInit. getButtons()
Returns a list ofEventButton
that describes which buttons are pressed when the event is launched.List<EventButton>
NativeAbstractMouseEvent. getButtons()
Returns the buttons being depressed (if any) when the mouse event was fired.Methods in org.pepstock.charba.client.dom.events with parameters of type EventButton Modifier and Type Method Description void
MouseEventInit. setButton(EventButton button)
Sets aEventButton
that describes which button is pressed during events related to the press or release of a button.void
MouseEventInit. setButtons(EventButton... buttons)
Sets an array ofEventButton
that describes which buttons are pressed when the event is launched.Method parameters in org.pepstock.charba.client.dom.events with type arguments of type EventButton Modifier and Type Method Description void
MouseEventInit. setButtons(List<EventButton> buttons)
Sets a list ofEventButton
that describes which buttons are pressed when the event is launched.
-