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 TouchArrayTouch. get(int index)Gets the value at a given index.TouchArrayTouchList. get(int index)Returns the element at the specified position in this list.TouchArrayTouchList. 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).TouchArrayTouchList. 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 voidArrayTouchList. 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).booleanArrayTouchList. add(Touch element)Appends the specified element to the end of this listvoidArrayTouchList. addAll(Touch... values)Loads an array of elements in the liststatic ArrayTouchArrayTouch. fromOrEmpty(Touch... items)This method creates new array instance with a variable number ofToucharguments.static ArrayTouchArrayTouch. fromOrNull(Touch... items)This method creates new array instance with a variable number ofToucharguments.TouchArrayTouchList. 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 ArrayTouchArrayTouch. fromOrEmpty(List<Touch> items)Creates a java script array of canvas starting from list of canvas.static ArrayTouchArrayTouch. 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 TouchTouch. create(TouchInit init)Creates new touch object with initial configuration.TouchTouchList. 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 voidTouchEventInit. setChangedTouches(Touch... touches)Sets an array of objects for every point of contact which contributed to the event.voidTouchEventInit. 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.voidTouchEventInit. 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 voidTouchEventInit. setChangedTouches(List<Touch> touches)Sets a list of objects for every point of contact which contributed to the event.voidTouchEventInit. 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 eventvoidTouchEventInit. 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.
-