TouchMoveHandlerAdapter class
Handler interface for {@link TouchMoveEvent} events.
class TouchMoveHandlerAdapter extends EventHandlerAdapter implements TouchMoveHandler {
TouchMoveHandlerAdapter(EventHandlerAdapterCallback callback) : super(callback);
/**
* Called when TouchMoveEvent is fired.
*
* @param event the {@link TouchMoveEvent} that was fired
*/
void onTouchMove(TouchMoveEvent event) {
callback(event);
}
}
Extends
EventHandlerAdapter > TouchMoveHandlerAdapter
Implements
Constructors
new TouchMoveHandlerAdapter(EventHandlerAdapterCallback callback) #
Properties
EventHandlerAdapterCallback callback #
inherited from EventHandlerAdapter
EventHandlerAdapterCallback callback
Methods
void onTouchMove(TouchMoveEvent event) #
Called when TouchMoveEvent is fired.
@param event the {@link TouchMoveEvent} that was fired
void onTouchMove(TouchMoveEvent event) {
callback(event);
}