public abstract class

HandlesAllTouchEvents

extends Object
implements TouchCancelHandler TouchEndHandler TouchMoveHandler TouchStartHandler
java.lang.Object
   ↳ com.google.gwt.event.dom.client.HandlesAllTouchEvents

Class Overview

Receiver used to handle all mouse events at once. WARNING, PLEASE READ: As this class is intended for developers who wish to handle all mouse events in GWT, new mouse handler interfaces will be added to it. Therefore, updates to GWT could cause breaking API changes.

Summary

Public Constructors
HandlesAllTouchEvents()
Constructor.
Public Methods
void handle(HasAllTouchHandlers eventSource)
Convenience method to handle all touch events from an event source.
static <H extends TouchStartHandler & TouchMoveHandler & TouchEndHandler & TouchCancelHandler> void handle(HasAllTouchHandlers source, H reciever)
Convenience method used to handle all touch events from an event source.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.gwt.event.dom.client.TouchCancelHandler
From interface com.google.gwt.event.dom.client.TouchEndHandler
From interface com.google.gwt.event.dom.client.TouchMoveHandler
From interface com.google.gwt.event.dom.client.TouchStartHandler

Public Constructors

public HandlesAllTouchEvents ()

Constructor.

Public Methods

public void handle (HasAllTouchHandlers eventSource)

Convenience method to handle all touch events from an event source.

Parameters
eventSource the event source

public static void handle (HasAllTouchHandlers source, H reciever)

Convenience method used to handle all touch events from an event source.

Parameters
source the event source
reciever the receiver implementing all touch handlers