aboutsummaryrefslogtreecommitdiffstats
path: root/monkeyrunner
diff options
context:
space:
mode:
Diffstat (limited to 'monkeyrunner')
-rw-r--r--monkeyrunner/src/com/android/monkeyrunner/MonkeyDevice.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/monkeyrunner/src/com/android/monkeyrunner/MonkeyDevice.java b/monkeyrunner/src/com/android/monkeyrunner/MonkeyDevice.java
index e60d12e..41e58f9 100644
--- a/monkeyrunner/src/com/android/monkeyrunner/MonkeyDevice.java
+++ b/monkeyrunner/src/com/android/monkeyrunner/MonkeyDevice.java
@@ -66,6 +66,9 @@ public class MonkeyDevice extends PyObject implements ClassDictInit {
@MonkeyRunnerExported(doc = "Sends a DOWN event, immediately followed by an UP event when used with touch() or press()")
public static final String DOWN_AND_UP = TouchPressType.DOWN_AND_UP.getIdentifier();
+ @MonkeyRunnerExported(doc = "Sends a MOVE event when used with touch().")
+ public static final String MOVE = TouchPressType.MOVE.getIdentifier();
+
private IChimpDevice impl;
public MonkeyDevice(IChimpDevice impl) {