Uses of Class
org.pepstock.charba.client.dom.events.Touch
-
Packages that use Touch Package Description org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.dom.events Contains all classes to map and manage DOM events. -
-
Uses of Touch in org.pepstock.charba.client.commons
Methods in org.pepstock.charba.client.commons that return Touch Modifier and Type Method Description Touch
ArrayTouch. get(int index)
Gets the value at a given index.Touch
ArrayTouchList. get(int index)
Returns the element at the specified position in this list.Touch
ArrayTouchList. remove(int index)
Removes the element at the specified position in this list.
Shifts any subsequent elements to the left (subtracts one from their indices).Touch
ArrayTouchList. set(int index, Touch element)
Replaces the element at the specified position in this list with the specified element.Methods in org.pepstock.charba.client.commons that return types with arguments of type Touch Modifier and Type Method Description static List<Touch>
ArrayListHelper. unmodifiableList(ArrayTouch values)
Creates a array list of touches by a java script array of touches.Methods in org.pepstock.charba.client.commons with parameters of type Touch Modifier and Type Method Description void
ArrayTouchList. add(int index, Touch element)
Inserts the specified element at the specified position in this list.
Shifts the element currently at that position (if any) and any subsequent elements to the right (adds one to their indices).boolean
ArrayTouchList. add(Touch element)
Appends the specified element to the end of this listvoid
ArrayTouchList. addAll(Touch... values)
Loads an array of elements in the liststatic ArrayTouch
ArrayTouch. fromOrEmpty(Touch... items)
This method creates new array instance with a variable number ofTouch
arguments.static ArrayTouch
ArrayTouch. fromOrNull(Touch... items)
This method creates new array instance with a variable number ofTouch
arguments.Touch
ArrayTouchList. set(int index, Touch element)
Replaces the element at the specified position in this list with the specified element.Method parameters in org.pepstock.charba.client.commons with type arguments of type Touch Modifier and Type Method Description static ArrayTouch
ArrayTouch. fromOrEmpty(List<Touch> items)
Creates a java script array of canvas starting from list of canvas.static ArrayTouch
ArrayTouch. fromOrNull(List<Touch> items)
Creates a java script array of canvas starting from list of canvas. -
Uses of Touch in org.pepstock.charba.client.dom.events
Methods in org.pepstock.charba.client.dom.events that return Touch Modifier and Type Method Description static Touch
Touch. create(TouchInit init)
Creates new touch object with initial configuration.Touch
TouchList. item(int index)
Returns the touch object at the specified index in the list.Methods in org.pepstock.charba.client.dom.events that return types with arguments of type Touch Modifier and Type Method Description List<Touch>
TouchEventInit. getChangedTouches()
Returns a list of objects for every point of contact which contributed to the event.List<Touch>
TouchEventInit. getTargetTouches()
Returns a list of objects for every point of contact that is touching the surface and started on the element that is the target of the current event.List<Touch>
TouchEventInit. getTouches()
Returns a list of objects for every point of contact currently touching the surface.Methods in org.pepstock.charba.client.dom.events with parameters of type Touch Modifier and Type Method Description void
TouchEventInit. setChangedTouches(Touch... touches)
Sets an array of objects for every point of contact which contributed to the event.void
TouchEventInit. setTargetTouches(Touch... touches)
Sets an array of objects for every point of contact that is touching the surface and started on the element that is the target of the current event.void
TouchEventInit. setTouches(Touch... touches)
Sets an array of objects for every point of contact currently touching the surface.Method parameters in org.pepstock.charba.client.dom.events with type arguments of type Touch Modifier and Type Method Description void
TouchEventInit. setChangedTouches(List<Touch> touches)
Sets a list of objects for every point of contact which contributed to the event.void
TouchEventInit. setTargetTouches(List<Touch> touches)
Sets a list of objects for every point of contact that is touching the surface and started on the element that is the target of the current eventvoid
TouchEventInit. setTouches(List<Touch> touches)
Sets an array of objects for every point of contact currently touching the surface.Constructors in org.pepstock.charba.client.dom.events with parameters of type Touch Constructor Description TouchEventInit(Touch... touches)
Creates an object with an array of objects for every point of contact currently touching the surface.Constructor parameters in org.pepstock.charba.client.dom.events with type arguments of type Touch Constructor Description TouchEventInit(List<Touch> touches)
Creates an object with an array of objects for every point of contact currently touching the surface.
-