mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
26 lines
1005 B
Java
Generated
26 lines
1005 B
Java
Generated
// Generated automatically from android.view.translation.TranslationResponseValue for testing purposes
|
|
|
|
package android.view.translation;
|
|
|
|
import android.os.Bundle;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class TranslationResponseValue implements Parcelable
|
|
{
|
|
public Bundle getExtras(){ return null; }
|
|
public CharSequence getText(){ return null; }
|
|
public CharSequence getTransliteration(){ return null; }
|
|
public String toString(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public int describeContents(){ return 0; }
|
|
public int getStatusCode(){ return 0; }
|
|
public int hashCode(){ return 0; }
|
|
public static Parcelable.Creator<TranslationResponseValue> CREATOR = null;
|
|
public static String EXTRA_DEFINITIONS = null;
|
|
public static TranslationResponseValue forError(){ return null; }
|
|
public static int STATUS_ERROR = 0;
|
|
public static int STATUS_SUCCESS = 0;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|