Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8341ebb authored by Bjorn Bringert's avatar Bjorn Bringert Committed by Android Git Automerger
Browse files

am 2bb53754: Merge change Icaf932d0 into eclair

Merge commit '2bb53754' into eclair-mr2

* commit '2bb53754':
  Fix code example in Parcelable javadoc
parents 05388e45 2bb53754
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -29,12 +29,16 @@ package android.os;
 * public class MyParcelable implements Parcelable {
 *     private int mData;
 *
 *     public int describeContents() {
 *         return 0;
 *     }
 *
 *     public void writeToParcel(Parcel out, int flags) {
 *         out.writeInt(mData);
 *     }
 *
 *     public static final Parcelable.Creator<MyParcelable> CREATOR
 *             = new Parcelable.Creator<MyParcelable>() {
 *     public static final Parcelable.Creator&lt;MyParcelable&gt; CREATOR
 *             = new Parcelable.Creator&lt;MyParcelable&gt;() {
 *         public MyParcelable createFromParcel(Parcel in) {
 *             return new MyParcelable(in);
 *         }
@@ -42,7 +46,7 @@ package android.os;
 *         public MyParcelable[] newArray(int size) {
 *             return new MyParcelable[size];
 *         }
 *     }
 *     };
 *     
 *     private MyParcelable(Parcel in) {
 *         mData = in.readInt();