mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
20 lines
699 B
Java
Generated
20 lines
699 B
Java
Generated
// Generated automatically from android.view.inputmethod.SurroundingText for testing purposes
|
|
|
|
package android.view.inputmethod;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class SurroundingText implements Parcelable
|
|
{
|
|
protected SurroundingText() {}
|
|
public CharSequence getText(){ return null; }
|
|
public SurroundingText(CharSequence p0, int p1, int p2, int p3){}
|
|
public int describeContents(){ return 0; }
|
|
public int getOffset(){ return 0; }
|
|
public int getSelectionEnd(){ return 0; }
|
|
public int getSelectionStart(){ return 0; }
|
|
public static Parcelable.Creator<SurroundingText> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|