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