All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.os.Parcelable Maven / Gradle / Ivy

Go to download

This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

The newest version!
package android.os;

public abstract interface Parcelable
{
    public static final int CONTENTS_FILE_DESCRIPTOR = 1;
    public static final int PARCELABLE_WRITE_RETURN_VALUE = 1;

    public abstract int describeContents();

    public abstract void writeToParcel(Parcel paramParcel, int paramInt);

    public static abstract interface ClassLoaderCreator
            extends Parcelable.Creator
    {
        public abstract T createFromParcel(Parcel paramParcel, ClassLoader paramClassLoader);
    }

    public static abstract interface Creator
    {
        public abstract T createFromParcel(Parcel paramParcel);

        public abstract T[] newArray(int paramInt);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy