mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
24 lines
618 B
Java
Generated
24 lines
618 B
Java
Generated
// Generated automatically from android.os.Parcelable for testing purposes
|
|
|
|
package android.os;
|
|
|
|
import android.app.Fragment;
|
|
import android.os.Parcel;
|
|
|
|
public interface Parcelable
|
|
{
|
|
int describeContents();
|
|
static int CONTENTS_FILE_DESCRIPTOR = 0;
|
|
static int PARCELABLE_WRITE_RETURN_VALUE = 0;
|
|
static public interface ClassLoaderCreator<T> extends Parcelable.Creator<T>
|
|
{
|
|
T createFromParcel(Parcel p0, ClassLoader p1);
|
|
}
|
|
static public interface Creator<T>
|
|
{
|
|
T createFromParcel(Parcel p0);
|
|
T[] newArray(int p0);
|
|
}
|
|
void writeToParcel(Parcel p0, int p1);
|
|
}
|