diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2013-07-30 09:22:51 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-07-30 09:22:51 -0700 |
commit | c2314cf5f4efa2cc767e0069dcc2a67e12d7cd20 (patch) | |
tree | 66b1cc4eeea2eef33c9bae7bf13e5b515bfb86f1 /core/java/android | |
parent | c0dbd255aee660dcbe2b0411c2ec2ec338c9167c (diff) | |
parent | e700a36e4041a921f880a7c3c5ec6ce96c955a92 (diff) | |
download | frameworks_base-c2314cf5f4efa2cc767e0069dcc2a67e12d7cd20.zip frameworks_base-c2314cf5f4efa2cc767e0069dcc2a67e12d7cd20.tar.gz frameworks_base-c2314cf5f4efa2cc767e0069dcc2a67e12d7cd20.tar.bz2 |
am e700a36e: Merge "Update getCheckedItemPositions() documentation"
* commit 'e700a36e4041a921f880a7c3c5ec6ce96c955a92':
Update getCheckedItemPositions() documentation
Diffstat (limited to 'core/java/android')
-rw-r--r-- | core/java/android/widget/AbsListView.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/widget/AbsListView.java b/core/java/android/widget/AbsListView.java index 219891c..c36ecc8 100644 --- a/core/java/android/widget/AbsListView.java +++ b/core/java/android/widget/AbsListView.java @@ -919,9 +919,9 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te * the choice mode has not been set to {@link #CHOICE_MODE_NONE}. * * @return A SparseBooleanArray which will return true for each call to - * get(int position) where position is a position in the list, - * or <code>null</code> if the choice mode is set to - * {@link #CHOICE_MODE_NONE}. + * get(int position) where position is a checked position in the + * list and false otherwise, or <code>null</code> if the choice + * mode is set to {@link #CHOICE_MODE_NONE}. */ public SparseBooleanArray getCheckedItemPositions() { if (mChoiceMode != CHOICE_MODE_NONE) { |