Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/os/Parcelable.java
Joe Farebrother 498ad230c2 Update stubs
2022-08-05 12:56:19 +01:00

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);
}