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

android.os.Parcelable Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package android.os;

public interface Parcelable {
  int CONTENTS_FILE_DESCRIPTOR = 1;
  int PARCELABLE_WRITE_RETURN_VALUE = 1;

  int describeContents();

  void writeToParcel(Parcel var1, int var2);

  public interface ClassLoaderCreator extends Parcelable.Creator {
    T createFromParcel(Parcel var1, ClassLoader var2);
  }

  public interface Creator {
    T createFromParcel(Parcel var1);

    T[] newArray(int var1);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy