Add Editable.toString flow step

This commit is contained in:
Tony Torralba
2022-04-26 11:00:41 +02:00
parent 6738270b65
commit 2ee83e2ba2
35 changed files with 905 additions and 29 deletions

View File

@@ -0,0 +1,54 @@
// Generated automatically from android.view.textclassifier.TextClassifierEvent for testing purposes
package android.view.textclassifier;
import android.icu.util.ULocale;
import android.os.Bundle;
import android.os.Parcel;
import android.os.Parcelable;
import android.view.textclassifier.TextClassificationContext;
abstract public class TextClassifierEvent implements Parcelable
{
protected TextClassifierEvent() {}
public Bundle getExtras(){ return null; }
public String getModelName(){ return null; }
public String getResultId(){ return null; }
public String toString(){ return null; }
public String[] getEntityTypes(){ return null; }
public TextClassificationContext getEventContext(){ return null; }
public ULocale getLocale(){ return null; }
public float[] getScores(){ return null; }
public int describeContents(){ return 0; }
public int getEventCategory(){ return 0; }
public int getEventIndex(){ return 0; }
public int getEventType(){ return 0; }
public int[] getActionIndices(){ return null; }
public static Parcelable.Creator<TextClassifierEvent> CREATOR = null;
public static int CATEGORY_CONVERSATION_ACTIONS = 0;
public static int CATEGORY_LANGUAGE_DETECTION = 0;
public static int CATEGORY_LINKIFY = 0;
public static int CATEGORY_SELECTION = 0;
public static int TYPE_ACTIONS_GENERATED = 0;
public static int TYPE_ACTIONS_SHOWN = 0;
public static int TYPE_AUTO_SELECTION = 0;
public static int TYPE_COPY_ACTION = 0;
public static int TYPE_CUT_ACTION = 0;
public static int TYPE_LINKS_GENERATED = 0;
public static int TYPE_LINK_CLICKED = 0;
public static int TYPE_MANUAL_REPLY = 0;
public static int TYPE_OTHER_ACTION = 0;
public static int TYPE_OVERTYPE = 0;
public static int TYPE_PASTE_ACTION = 0;
public static int TYPE_SELECTION_DESTROYED = 0;
public static int TYPE_SELECTION_DRAG = 0;
public static int TYPE_SELECTION_MODIFIED = 0;
public static int TYPE_SELECTION_RESET = 0;
public static int TYPE_SELECTION_STARTED = 0;
public static int TYPE_SELECT_ALL = 0;
public static int TYPE_SHARE_ACTION = 0;
public static int TYPE_SMART_ACTION = 0;
public static int TYPE_SMART_SELECTION_MULTI = 0;
public static int TYPE_SMART_SELECTION_SINGLE = 0;
public void writeToParcel(Parcel p0, int p1){}
}