mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
Add Editable.toString flow step
This commit is contained in:
54
java/ql/test/stubs/google-android-9.0.0/android/view/textclassifier/TextClassifierEvent.java
generated
Normal file
54
java/ql/test/stubs/google-android-9.0.0/android/view/textclassifier/TextClassifierEvent.java
generated
Normal 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){}
|
||||
}
|
||||
Reference in New Issue
Block a user