/**@class android.accessibilityservice.GestureDescription @extends java.lang.Object Accessibility services with the {@link android.R.styleable#AccessibilityService_canPerformGestures} property can dispatch gestures. This class describes those gestures. Gestures are made up of one or more strokes. Gestures are immutable once built. <p> Spatial dimensions throughout are in screen pixels. Time is measured in milliseconds. */ var GestureDescription = { /**Get the upper limit for the number of strokes a gesture may contain. @return {Number} The maximum number of strokes. */ getMaxStrokeCount : function( ) {}, /**Get the upper limit on a gesture's duration. @return {Number} The maximum duration in milliseconds. */ getMaxGestureDuration : function( ) {}, /**Get the number of stroke in the gesture. @return {Number} the number of strokes in this gesture */ getStrokeCount : function( ) {}, /**Read a stroke from the gesture @param {Number} index the index of the stroke @return {Object {android.accessibilityservice.GestureDescription.StrokeDescription}} A description of the stroke. */ getStroke : function( ) {}, };