diff options
| author | 2019-01-28 15:14:36 +0000 | |
|---|---|---|
| committer | 2019-01-30 14:41:22 +0000 | |
| commit | 63abbe234dc2a4361f80c006baeb0bac1b0ef135 (patch) | |
| tree | 22aa6fc5a8697c286198b1ae90f2ea8e5c1ed451 | |
| parent | 92fd290867b1e43f9f6f0d7869e43edce251f061 (diff) | |
Revise javadoc of EXTRA_FROM_TEXT_CLASSIFIER
Test: make
FIXES: 123223220
Change-Id: I4e79cab261a3540cc94d2cf19950f5cba22e06fe
| -rw-r--r-- | core/java/android/view/textclassifier/TextClassifier.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/java/android/view/textclassifier/TextClassifier.java b/core/java/android/view/textclassifier/TextClassifier.java index 5a5613605e36..8a688d8454e7 100644 --- a/core/java/android/view/textclassifier/TextClassifier.java +++ b/core/java/android/view/textclassifier/TextClassifier.java @@ -164,9 +164,10 @@ public interface TextClassifier { TextClassifier NO_OP = new TextClassifier() {}; /** - * Used as a boolean value to indicate the intent is generated by TextClassifier. + * Extra that is included on activity intents coming from a TextClassifier when + * it suggests actions to its caller. * <p> - * All {@link TextClassifier} implementations should set this boolean extra to be true in their + * All {@link TextClassifier} implementations should make sure this extra exists in their * generated intents. */ String EXTRA_FROM_TEXT_CLASSIFIER = "android.view.textclassifier.extra.FROM_TEXT_CLASSIFIER"; |