summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorNick Pelly <npelly@google.com>2009-08-16 15:29:17 -0700
committerNick Pelly <npelly@google.com>2009-08-17 10:35:49 -0700
commita260f3f725c2addef98329b4a04756aa95eb722d (patch)
treea3259fe420d0f945c9766f86f9e5f3955cd6d311 /docs
parentfd0d627569cb250f7060a83161cc845b9616e5a1 (diff)
downloadframeworks_base-a260f3f725c2addef98329b4a04756aa95eb722d.zip
frameworks_base-a260f3f725c2addef98329b4a04756aa95eb722d.tar.gz
frameworks_base-a260f3f725c2addef98329b4a04756aa95eb722d.tar.bz2
Update docs: readFromParcel() is not necessary to make a class support
Parcelable.
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/developing/tools/aidl.jd1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/html/guide/developing/tools/aidl.jd b/docs/html/guide/developing/tools/aidl.jd
index f370a80..abfa8b1 100644
--- a/docs/html/guide/developing/tools/aidl.jd
+++ b/docs/html/guide/developing/tools/aidl.jd
@@ -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>