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_ARRAYAn empty immutableEventButtonarray.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 EventButtonEventButton. mapToButton(int button)Scans all items of enumeration to get the right button related to passed argument.
See NativeAstatic EventButtonEventButton. 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 intEventButton. parseToButtons(EventButton... buttons)Returns thebuttonsvalue 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 intEventButton. parseToButtons(List<EventButton> buttons)Returns thebuttonsvalue 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 EventButtonMouseEventInit. getButton()Returns aEventButtonthat describes which button is pressed during events related to the press or release of a button.EventButtonNativeAbstractMouseEvent. 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 ofEventButtonthat 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 voidMouseEventInit. setButton(EventButton button)Sets aEventButtonthat describes which button is pressed during events related to the press or release of a button.voidMouseEventInit. setButtons(EventButton... buttons)Sets an array ofEventButtonthat 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 voidMouseEventInit. setButtons(List<EventButton> buttons)Sets a list ofEventButtonthat describes which buttons are pressed when the event is launched.
-