Interface HasSwipeHandlers
-
public interface HasSwipeHandlersA widget that implements this interface sourcesSwipeStartEvents,SwipeMoveEvents andSwipeEndEvents
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.gwt.event.shared.HandlerRegistrationaddSwipeEndHandler(SwipeEndHandler handler)register for aSwipeEndHandlercom.google.gwt.event.shared.HandlerRegistrationaddSwipeMoveHandler(SwipeMoveHandler handler)register for aSwipeMoveHandlercom.google.gwt.event.shared.HandlerRegistrationaddSwipeStartHandler(SwipeStartHandler handler)register for aSwipeStartEvent
-
-
-
Method Detail
-
addSwipeStartHandler
com.google.gwt.event.shared.HandlerRegistration addSwipeStartHandler(SwipeStartHandler handler)
register for aSwipeStartEvent- Parameters:
handler- the handler to register- Returns:
- the
HandlerRegistration
-
addSwipeMoveHandler
com.google.gwt.event.shared.HandlerRegistration addSwipeMoveHandler(SwipeMoveHandler handler)
register for aSwipeMoveHandler- Parameters:
handler- the handler to register- Returns:
- the
HandlerRegistration
-
addSwipeEndHandler
com.google.gwt.event.shared.HandlerRegistration addSwipeEndHandler(SwipeEndHandler handler)
register for aSwipeEndHandler- Parameters:
handler- the handler to register- Returns:
- the
HandlerRegistration
-
-