Uses of Interface
com.teamdev.jxbrowser.ui.TouchPoint
Packages that use TouchPoint
Package
Description
Contains the classes and interfaces of the DOM events.
The utility classes for the user interface (UI) related functionality.
The user interface events.
-
Uses of TouchPoint in com.teamdev.jxbrowser.dom.event
Methods in com.teamdev.jxbrowser.dom.event that return types with arguments of type TouchPointModifier and TypeMethodDescriptionTouchEvent.changedTouches()The touch points that contributed to the event.default List<TouchPoint>TouchEventParams.changedTouches()Contains touch points that have changed since the last touch event.TouchEvent.targetTouches()The touch points that have started on thetarget elementof this event.default List<TouchPoint>TouchEventParams.targetTouches()Contains all touch points that are specific to the target element.TouchEvent.touches()All touch points that are currently present on the screen.default List<TouchPoint>TouchEventParams.touches()Returns all touch points that are currently on the screen. -
Uses of TouchPoint in com.teamdev.jxbrowser.ui
Methods in com.teamdev.jxbrowser.ui that return TouchPointModifier and TypeMethodDescriptionTouchPoint.Builder.build()Returns a newTouchPointinstance built from the current state of this builder. -
Uses of TouchPoint in com.teamdev.jxbrowser.ui.event
Methods in com.teamdev.jxbrowser.ui.event that return types with arguments of type TouchPointModifier and TypeMethodDescriptiondefault List<TouchPoint>TouchCanceled.changedTouches()default List<TouchPoint>TouchEnded.changedTouches()TouchEvent.changedTouches()The touch points that contributed to the event.default List<TouchPoint>TouchMoved.changedTouches()default List<TouchPoint>TouchStarted.changedTouches()default List<TouchPoint>TouchCanceled.targetTouches()default List<TouchPoint>TouchEnded.targetTouches()TouchEvent.targetTouches()The touch points that have started on the target element of this event.default List<TouchPoint>TouchMoved.targetTouches()default List<TouchPoint>TouchStarted.targetTouches()default List<TouchPoint>TouchCanceled.touches()default List<TouchPoint>TouchEnded.touches()TouchEvent.touches()All touch points that are currently present on the screen.default List<TouchPoint>TouchMoved.touches()default List<TouchPoint>TouchStarted.touches()Method parameters in com.teamdev.jxbrowser.ui.event with type arguments of type TouchPointModifier and TypeMethodDescriptionTouchCanceled.Builder.changedTouches(List<TouchPoint> points) Sets the touch points that have just been removed, and no longer touching the surface.TouchEnded.Builder.changedTouches(List<TouchPoint> points) Sets the touch points that have just been removed, and no longer touching the surface.TouchMoved.Builder.changedTouches(List<TouchPoint> points) Sets the touch points that have changed since the last touch event.TouchStarted.Builder.changedTouches(List<TouchPoint> points) Sets the touch points that became active with the current event.static TouchCanceled.BuilderTouchCanceled.newBuilder(List<TouchPoint> touches) Creates a newTouchCanceledbuilder with the given required parameters.static TouchEnded.BuilderTouchEnded.newBuilder(List<TouchPoint> touches) Creates a newTouchEndedbuilder with the given required parameters.static TouchMoved.BuilderTouchMoved.newBuilder(List<TouchPoint> touches) Creates a newTouchMovedbuilder with the given required parameters.static TouchStarted.BuilderTouchStarted.newBuilder(List<TouchPoint> touches) Creates a newTouchStartedbuilder with the given required parameters.TouchCanceled.Builder.targetTouches(List<TouchPoint> points) Sets the touch points that started on the target element of this event.TouchEnded.Builder.targetTouches(List<TouchPoint> points) Sets the touch points that started on the target element of this event.TouchMoved.Builder.targetTouches(List<TouchPoint> points) Sets the touch points that started on the target element of this event.TouchStarted.Builder.targetTouches(List<TouchPoint> points) Sets the touch points that started on the target element of this event.