Renamed setGestureType in GestureLibrary
diff --git a/tests/sketch/src/com/android/gesture/GestureLibrary.java b/tests/sketch/src/com/android/gesture/GestureLibrary.java
index eba6069..7b5480c 100644
--- a/tests/sketch/src/com/android/gesture/GestureLibrary.java
+++ b/tests/sketch/src/com/android/gesture/GestureLibrary.java
@@ -106,11 +106,17 @@
         return mOrientationStyle;
     }
 
-    public void setGestureType(int type) {
+    /**
+     * @param type SEQUENCE_INVARIANT or SEQUENCE_SENSITIVE
+     */
+    public void setSequenceType(int type) {
         mSequenceType = type;
     }
 
-    public int getGestureType() {
+    /**
+     * @return SEQUENCE_INVARIANT or SEQUENCE_SENSITIVE
+     */
+    public int getSequenceType() {
         return mSequenceType;
     }