summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Felipe Leme <felipeal@google.com> 2017-03-03 13:56:11 -0800
committer Felipe Leme <felipeal@google.com> 2017-03-03 13:58:36 -0800
commit235770d4ee5399b74a102da78eca97ab51a0774e (patch)
tree38121c307db10891abfb10701ddf6ec3dcf4cbdd
parent638903002ef2a6da352c52aaeb9342ec25339ad1 (diff)
Minor documentation fixes.
Test: m update-api Bug: 33550221 Change-Id: I757f161eb78a5c0c662743f35a372c91130c5b34
-rw-r--r--core/java/android/app/assist/AssistStructure.java3
-rw-r--r--core/java/android/view/autofill/AutoFillType.java3
2 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/app/assist/AssistStructure.java b/core/java/android/app/assist/AssistStructure.java
index a1ef4a6401a3..db164e5989c1 100644
--- a/core/java/android/app/assist/AssistStructure.java
+++ b/core/java/android/app/assist/AssistStructure.java
@@ -1585,9 +1585,6 @@ public class AssistStructure implements Parcelable {
mNode.mInputType = inputType;
}
- /**
- * @hide
- */
@Override
public void setSanitized(boolean sanitized) {
mNode.mSanitized = sanitized;
diff --git a/core/java/android/view/autofill/AutoFillType.java b/core/java/android/view/autofill/AutoFillType.java
index 62913d89e64e..536d5e0550da 100644
--- a/core/java/android/view/autofill/AutoFillType.java
+++ b/core/java/android/view/autofill/AutoFillType.java
@@ -79,6 +79,9 @@ public final class AutoFillType implements Parcelable {
* <p>{@link AutoFillValue} instances for auto-filling a {@link View} can be obtained through
* {@link AutoFillValue#forList(int)}, and the value passed to auto-fill a
* {@link View} can be fetched through {@link AutoFillValue#getListValue()}.
+ *
+ * <p>The available options in the selection list are typically provided by
+ * {@link android.app.assist.AssistStructure.ViewNode#getAutoFillOptions()}.
*/
public boolean isList() {
return mType == TYPE_LIST;