diff options
author | Scott Main <smain@google.com> | 2013-01-04 18:26:14 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-01-04 18:26:14 -0800 |
commit | a6d6fbfc8a5809e8164a5bf357540d8e6f5a87cf (patch) | |
tree | 28f97e9d0e8e0e8f211f7c491c3a3470d7a1d4db /docs/html/guide | |
parent | 00ac55ed8b56721536eedf509ea754f4f3737d98 (diff) | |
parent | ff9414235a4d9052bd3003464be4649607447c9a (diff) | |
download | frameworks_base-a6d6fbfc8a5809e8164a5bf357540d8e6f5a87cf.zip frameworks_base-a6d6fbfc8a5809e8164a5bf357540d8e6f5a87cf.tar.gz frameworks_base-a6d6fbfc8a5809e8164a5bf357540d8e6f5a87cf.tar.bz2 |
am ff941423: am 181bb3aa: am 921c8a5d: am 4e483ed3: Merge "docs: misc bug fixes. including important versioning fixes for first app class" into jb-mr1-dev
* commit 'ff9414235a4d9052bd3003464be4649607447c9a':
docs: misc bug fixes. including important versioning fixes for first app class
Diffstat (limited to 'docs/html/guide')
-rw-r--r-- | docs/html/guide/components/aidl.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/components/aidl.jd b/docs/html/guide/components/aidl.jd index 805b7ec..0be6e6f 100644 --- a/docs/html/guide/components/aidl.jd +++ b/docs/html/guide/components/aidl.jd @@ -208,7 +208,7 @@ YourInterface.Stub}) and declares all the methods from the {@code .aidl} file.</ defines a few helper methods, most notably {@code asInterface()}, which takes an {@link android.os.IBinder} (usually the one passed to a client's {@link android.content.ServiceConnection#onServiceConnected onServiceConnected()} callback method) and -returns an instance of the stub interface. See the section <a href="#calling">Calling an IPC +returns an instance of the stub interface. See the section <a href="#Calling">Calling an IPC Method</a> for more details on how to make this cast.</p> <p>To implement the interface generated from the {@code .aidl}, extend the generated {@link |