diff options
author | Svetoslav Ganov <svetoslavganov@google.com> | 2011-10-25 11:31:31 -0700 |
---|---|---|
committer | Svetoslav Ganov <svetoslavganov@google.com> | 2011-10-25 11:33:22 -0700 |
commit | 71b4e71c67df79f53b582fabb34b96ddbe23fe0f (patch) | |
tree | adb757db56b23648d941ef3561ac9cca576e53f0 /core/java/android/accessibilityservice | |
parent | f512e46ae1f13314187df3ebfa9a761741be54cb (diff) | |
download | frameworks_base-71b4e71c67df79f53b582fabb34b96ddbe23fe0f.zip frameworks_base-71b4e71c67df79f53b582fabb34b96ddbe23fe0f.tar.gz frameworks_base-71b4e71c67df79f53b582fabb34b96ddbe23fe0f.tar.bz2 |
Minor documentation fixes for the APIs to expose virtual view tree.
Change-Id: I94b74196483fb55ca67e0a50eebab0412c88831c
Diffstat (limited to 'core/java/android/accessibilityservice')
-rw-r--r-- | core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl b/core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl index 52d9801..e53b313 100644 --- a/core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl +++ b/core/java/android/accessibilityservice/IAccessibilityServiceConnection.aidl @@ -33,7 +33,7 @@ interface IAccessibilityServiceConnection { * Finds an {@link AccessibilityNodeInfo} by accessibility id. * * @param accessibilityWindowId A unique window id. - * @param accessibilityNodeId A unique node id (accessibility and virtual descendant id). + * @param accessibilityNodeId A unique view id or virtual descendant id. * @param interactionId The id of the interaction for matching with the callback result. * @param callback Callback which to receive the result. * @param threadId The id of the calling thread. @@ -51,7 +51,7 @@ interface IAccessibilityServiceConnection { * * @param text The searched text. * @param accessibilityWindowId A unique window id. - * @param accessibilityNodeId A unique node id (accessibility and virtual descendant id) from + * @param accessibilityNodeId A unique view id or virtual descendant id from * where to start the search. Use {@link android.view.View#NO_ID} to start from the root. * @param interactionId The id of the interaction for matching with the callback result. * @param callback Callback which to receive the result. @@ -96,7 +96,7 @@ interface IAccessibilityServiceConnection { * Performs an accessibility action on an {@link AccessibilityNodeInfo}. * * @param accessibilityWindowId The id of the window. - * @param accessibilityNodeId A unique node id (accessibility and virtual descendant id). + * @param accessibilityNodeId A unique view id or virtual descendant id. * @param action The action to perform. * @param interactionId The id of the interaction for matching with the callback result. * @param callback Callback which to receive the result. |