am 736c24a8: Merge change 21516 into eclair

Merge commit '736c24a8af268d014163f4687750baf18664e690'

* commit '736c24a8af268d014163f4687750baf18664e690':
  Update docs: readFromParcel() is not necessary to make a class support
This commit is contained in:
Nick Pelly
2009-08-17 15:42:19 -07:00
committed by Android Git Automerger

View File

@@ -194,7 +194,6 @@ started.</p>
<li>Make your class implement the {@link android.os.Parcelable} interface.</li>
<li>Implement the method <code>public void writeToParcel(Parcel out)</code> that takes the
current state of the object and writes it to a parcel.</li>
<li>Implement the method <code>public void readFromParcel(Parcel in)</code> that reads the
value in a parcel into your object.</li>
<li>Add a static field called <code>CREATOR</code> to your class which is an object implementing
the {@link android.os.Parcelable.Creator Parcelable.Creator} interface.</li>