Revision: 9869
Author:   fre...@google.com
Date:     Sun Mar 20 14:12:52 2011
Log:      Fix Javadoc for gesture/touch events

Review at http://gwt-code-reviews.appspot.com/1383805

Review by: p...@google.com
http://code.google.com/p/google-web-toolkit/source/detail?r=9869

Modified:
/trunk/user/src/com/google/gwt/event/dom/client/HasGestureChangeHandlers.java
 /trunk/user/src/com/google/gwt/event/dom/client/HasGestureEndHandlers.java
/trunk/user/src/com/google/gwt/event/dom/client/HasGestureStartHandlers.java
 /trunk/user/src/com/google/gwt/event/dom/client/HasTouchCancelHandlers.java
 /trunk/user/src/com/google/gwt/event/dom/client/HasTouchEndHandlers.java
 /trunk/user/src/com/google/gwt/event/dom/client/HasTouchMoveHandlers.java
 /trunk/user/src/com/google/gwt/event/dom/client/HasTouchStartHandlers.java

=======================================
--- /trunk/user/src/com/google/gwt/event/dom/client/HasGestureChangeHandlers.java Tue Nov 23 11:35:12 2010 +++ /trunk/user/src/com/google/gwt/event/dom/client/HasGestureChangeHandlers.java Sun Mar 20 14:12:52 2011
@@ -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);
=======================================
--- /trunk/user/src/com/google/gwt/event/dom/client/HasGestureEndHandlers.java Tue Nov 23 11:35:12 2010 +++ /trunk/user/src/com/google/gwt/event/dom/client/HasGestureEndHandlers.java Sun Mar 20 14:12:52 2011
@@ -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);
=======================================
--- /trunk/user/src/com/google/gwt/event/dom/client/HasGestureStartHandlers.java Tue Nov 23 11:35:12 2010 +++ /trunk/user/src/com/google/gwt/event/dom/client/HasGestureStartHandlers.java Sun Mar 20 14:12:52 2011
@@ -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);
=======================================
--- /trunk/user/src/com/google/gwt/event/dom/client/HasTouchCancelHandlers.java Tue Nov 23 11:35:12 2010 +++ /trunk/user/src/com/google/gwt/event/dom/client/HasTouchCancelHandlers.java Sun Mar 20 14:12:52 2011
@@ -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);
=======================================
--- /trunk/user/src/com/google/gwt/event/dom/client/HasTouchEndHandlers.java Tue Nov 23 11:35:12 2010 +++ /trunk/user/src/com/google/gwt/event/dom/client/HasTouchEndHandlers.java Sun Mar 20 14:12:52 2011
@@ -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);
=======================================
--- /trunk/user/src/com/google/gwt/event/dom/client/HasTouchMoveHandlers.java Tue Nov 23 11:35:12 2010 +++ /trunk/user/src/com/google/gwt/event/dom/client/HasTouchMoveHandlers.java Sun Mar 20 14:12:52 2011
@@ -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);
=======================================
--- /trunk/user/src/com/google/gwt/event/dom/client/HasTouchStartHandlers.java Tue Nov 23 11:35:12 2010 +++ /trunk/user/src/com/google/gwt/event/dom/client/HasTouchStartHandlers.java Sun Mar 20 14:12:52 2011
@@ -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