FileDocCategorySizeDatePackage
GestureStore.javaAPI DocAndroid 5.1 API1922Sat Mar 14 14:09:34 GMT 2015android.gesture

GestureStore.java

package android.gesture;
public class GestureStore
{
public  GestureStore() { throw new RuntimeException("Stub!"); }
public  void setOrientationStyle(int style) { throw new RuntimeException("Stub!"); }
public  int getOrientationStyle() { throw new RuntimeException("Stub!"); }
public  void setSequenceType(int type) { throw new RuntimeException("Stub!"); }
public  int getSequenceType() { throw new RuntimeException("Stub!"); }
public  java.util.Set<java.lang.String> getGestureEntries() { throw new RuntimeException("Stub!"); }
public  java.util.ArrayList<android.gesture.Prediction> recognize(android.gesture.Gesture gesture) { throw new RuntimeException("Stub!"); }
public  void addGesture(java.lang.String entryName, android.gesture.Gesture gesture) { throw new RuntimeException("Stub!"); }
public  void removeGesture(java.lang.String entryName, android.gesture.Gesture gesture) { throw new RuntimeException("Stub!"); }
public  void removeEntry(java.lang.String entryName) { throw new RuntimeException("Stub!"); }
public  java.util.ArrayList<android.gesture.Gesture> getGestures(java.lang.String entryName) { throw new RuntimeException("Stub!"); }
public  boolean hasChanged() { throw new RuntimeException("Stub!"); }
public  void save(java.io.OutputStream stream) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  void save(java.io.OutputStream stream, boolean closeStream) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  void load(java.io.InputStream stream) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  void load(java.io.InputStream stream, boolean closeStream) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static final int ORIENTATION_INVARIANT = 1;
public static final int ORIENTATION_SENSITIVE = 2;
public static final int SEQUENCE_INVARIANT = 1;
public static final int SEQUENCE_SENSITIVE = 2;
}