Reviewers: pdr,

Description:
Fix Javadoc for gesture/touch events

Review by: p...@google.com

Please review this at http://gwt-code-reviews.appspot.com/1383805/

Affected files:
  M user/src/com/google/gwt/event/dom/client/HasGestureChangeHandlers.java
  M user/src/com/google/gwt/event/dom/client/HasGestureEndHandlers.java
  M user/src/com/google/gwt/event/dom/client/HasGestureStartHandlers.java
  M user/src/com/google/gwt/event/dom/client/HasTouchCancelHandlers.java
  M user/src/com/google/gwt/event/dom/client/HasTouchEndHandlers.java
  M user/src/com/google/gwt/event/dom/client/HasTouchMoveHandlers.java
  M user/src/com/google/gwt/event/dom/client/HasTouchStartHandlers.java


Index: user/src/com/google/gwt/event/dom/client/HasGestureChangeHandlers.java
===================================================================
--- user/src/com/google/gwt/event/dom/client/HasGestureChangeHandlers.java (revision 9867) +++ user/src/com/google/gwt/event/dom/client/HasGestureChangeHandlers.java (working copy)
@@ -26,7 +26,7 @@
   /**
    * Adds a {@link GestureChangeEvent} handler.
    *
-   * @param handler the mouse down handler
+   * @param handler the gesture change handler
    * @return {@link HandlerRegistration} used to remove this handler
    */
HandlerRegistration addGestureChangeHandler(GestureChangeHandler handler);
Index: user/src/com/google/gwt/event/dom/client/HasGestureEndHandlers.java
===================================================================
--- user/src/com/google/gwt/event/dom/client/HasGestureEndHandlers.java (revision 9867) +++ user/src/com/google/gwt/event/dom/client/HasGestureEndHandlers.java (working copy)
@@ -26,7 +26,7 @@
   /**
    * Adds a {@link GestureEndEvent} handler.
    *
-   * @param handler the mouse down handler
+   * @param handler the gesture end handler
    * @return {@link HandlerRegistration} used to remove this handler
    */
   HandlerRegistration addGestureEndHandler(GestureEndHandler handler);
Index: user/src/com/google/gwt/event/dom/client/HasGestureStartHandlers.java
===================================================================
--- user/src/com/google/gwt/event/dom/client/HasGestureStartHandlers.java (revision 9867) +++ user/src/com/google/gwt/event/dom/client/HasGestureStartHandlers.java (working copy)
@@ -26,7 +26,7 @@
   /**
    * Adds a {@link GestureStartEvent} handler.
    *
-   * @param handler the mouse down handler
+   * @param handler the gesture start handler
    * @return {@link HandlerRegistration} used to remove this handler
    */
   HandlerRegistration addGestureStartHandler(GestureStartHandler handler);
Index: user/src/com/google/gwt/event/dom/client/HasTouchCancelHandlers.java
===================================================================
--- user/src/com/google/gwt/event/dom/client/HasTouchCancelHandlers.java (revision 9867) +++ user/src/com/google/gwt/event/dom/client/HasTouchCancelHandlers.java (working copy)
@@ -26,7 +26,7 @@
   /**
    * Adds a {@link TouchCancelEvent} handler.
    *
-   * @param handler the mouse down handler
+   * @param handler the touch cancel handler
    * @return {@link HandlerRegistration} used to remove this handler
    */
   HandlerRegistration addTouchCancelHandler(TouchCancelHandler handler);
Index: user/src/com/google/gwt/event/dom/client/HasTouchEndHandlers.java
===================================================================
--- user/src/com/google/gwt/event/dom/client/HasTouchEndHandlers.java (revision 9867) +++ user/src/com/google/gwt/event/dom/client/HasTouchEndHandlers.java (working copy)
@@ -26,7 +26,7 @@
   /**
    * Adds a {@link TouchEndEvent} handler.
    *
-   * @param handler the mouse down handler
+   * @param handler the touch end handler
    * @return {@link HandlerRegistration} used to remove this handler
    */
   HandlerRegistration addTouchEndHandler(TouchEndHandler handler);
Index: user/src/com/google/gwt/event/dom/client/HasTouchMoveHandlers.java
===================================================================
--- user/src/com/google/gwt/event/dom/client/HasTouchMoveHandlers.java (revision 9867) +++ user/src/com/google/gwt/event/dom/client/HasTouchMoveHandlers.java (working copy)
@@ -26,7 +26,7 @@
   /**
    * Adds a {@link TouchMoveEvent} handler.
    *
-   * @param handler the mouse down handler
+   * @param handler the touch move handler
    * @return {@link HandlerRegistration} used to remove this handler
    */
   HandlerRegistration addTouchMoveHandler(TouchMoveHandler handler);
Index: user/src/com/google/gwt/event/dom/client/HasTouchStartHandlers.java
===================================================================
--- user/src/com/google/gwt/event/dom/client/HasTouchStartHandlers.java (revision 9867) +++ user/src/com/google/gwt/event/dom/client/HasTouchStartHandlers.java (working copy)
@@ -26,7 +26,7 @@
   /**
    * Adds a {@link TouchStartEvent} handler.
    *
-   * @param handler the mouse down handler
+   * @param handler the touch start handler
    * @return {@link HandlerRegistration} used to remove this handler
    */
   HandlerRegistration addTouchStartHandler(TouchStartHandler handler);


--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to