FileDocCategorySizeDatePackage
GestureLibrary.javaAPI DocAndroid 5.1 API2108Thu Mar 12 22:22:10 GMT 2015android.gesture

GestureLibrary

public abstract class GestureLibrary extends Object

Fields Summary
protected final GestureStore
mStore
Constructors Summary
protected GestureLibrary()

        mStore = new GestureStore();
    
Methods Summary
public voidaddGesture(java.lang.String entryName, Gesture gesture)

        mStore.addGesture(entryName, gesture);
    
public java.util.SetgetGestureEntries()

        return mStore.getGestureEntries();
    
public java.util.ArrayListgetGestures(java.lang.String entryName)

        return mStore.getGestures(entryName);
    
public LearnergetLearner()

hide

        return mStore.getLearner();
    
public intgetOrientationStyle()

        return mStore.getOrientationStyle();
    
public intgetSequenceType()

        return mStore.getSequenceType();
    
public booleanisReadOnly()

        return false;
    
public abstract booleanload()

public java.util.ArrayListrecognize(Gesture gesture)

        return mStore.recognize(gesture);
    
public voidremoveEntry(java.lang.String entryName)

        mStore.removeEntry(entryName);
    
public voidremoveGesture(java.lang.String entryName, Gesture gesture)

        mStore.removeGesture(entryName, gesture);
    
public abstract booleansave()

public voidsetOrientationStyle(int style)

        mStore.setOrientationStyle(style);
    
public voidsetSequenceType(int type)

        mStore.setSequenceType(type);