diff options
author | Jean Chalard <jchalard@google.com> | 2013-11-12 22:35:28 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-11-12 22:35:28 -0800 |
commit | e1ce53209a0a2f2d9b6e527eb5ace1ab2db648e1 (patch) | |
tree | 252c01f0dbb59ce3b6c899ce1a6e7f863d9454f8 /core/java/android/text | |
parent | cfafb5059dc1532ccc764b38d5298022dac367b4 (diff) | |
parent | 9ea18d495c4c3d47d279f3f63cb4a24641544f89 (diff) | |
download | frameworks_base-e1ce53209a0a2f2d9b6e527eb5ace1ab2db648e1.zip frameworks_base-e1ce53209a0a2f2d9b6e527eb5ace1ab2db648e1.tar.gz frameworks_base-e1ce53209a0a2f2d9b6e527eb5ace1ab2db648e1.tar.bz2 |
am 9ea18d49: am d952ac4c: am 218ecd43: Fix the docs build
* commit '9ea18d495c4c3d47d279f3f63cb4a24641544f89':
Fix the docs build
Diffstat (limited to 'core/java/android/text')
-rw-r--r-- | core/java/android/text/InputType.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/java/android/text/InputType.java b/core/java/android/text/InputType.java index 2e3ec52..c596388 100644 --- a/core/java/android/text/InputType.java +++ b/core/java/android/text/InputType.java @@ -128,8 +128,8 @@ public interface InputType { * the IME will not try to correct typos. You should always set this flag * unless you really expect users to type non-words in this field, for * example to choose a name for a character in a game. - * Contrast this with {@link TYPE_TEXT_FLAG_AUTO_COMPLETE} and - * {@link TYPE_TEXT_FLAG_NO_SUGGESTIONS}: + * Contrast this with {@link #TYPE_TEXT_FLAG_AUTO_COMPLETE} and + * {@link #TYPE_TEXT_FLAG_NO_SUGGESTIONS}: * {@code TYPE_TEXT_FLAG_AUTO_CORRECT} means that the IME will try to * auto-correct typos as the user is typing, but does not define whether * the IME offers an interface to show suggestions. @@ -147,9 +147,9 @@ public interface InputType { * InputMethodSession.displayCompletions()} as a result of the editor calling * {@link android.view.inputmethod.InputMethodManager#displayCompletions * InputMethodManager.displayCompletions()}. - * Note the contrast with {@link TYPE_TEXT_FLAG_AUTO_CORRECT} and - * {@link TYPE_TEXT_FLAG_NO_SUGGESTIONS}: - * {@link TYPE_TEXT_FLAG_AUTO_COMPLETE} means the editor should show an + * Note the contrast with {@link #TYPE_TEXT_FLAG_AUTO_CORRECT} and + * {@link #TYPE_TEXT_FLAG_NO_SUGGESTIONS}: + * {@code TYPE_TEXT_FLAG_AUTO_COMPLETE} means the editor should show an * interface for displaying suggestions, but instead of supplying its own * it will rely on the Editor to pass completions/corrections. */ @@ -180,10 +180,10 @@ public interface InputType { * Please avoid using this unless you are certain this is what you want. * Many input methods need suggestions to work well, for example the ones * based on gesture typing. Consider clearing - * {@link TYPE_TEXT_FLAG_AUTO_CORRECT} instead if you just do not + * {@link #TYPE_TEXT_FLAG_AUTO_CORRECT} instead if you just do not * want the IME to correct typos. - * Note the contrast with {@link TYPE_TEXT_FLAG_AUTO_CORRECT} and - * {@link TYPE_TEXT_FLAG_AUTO_COMPLETE}: + * Note the contrast with {@link #TYPE_TEXT_FLAG_AUTO_CORRECT} and + * {@link #TYPE_TEXT_FLAG_AUTO_COMPLETE}: * {@code TYPE_TEXT_FLAG_NO_SUGGESTIONS} means the IME should never * show an interface to display suggestions. Most IMEs will also take this to * mean they should not try to auto-correct what the user is typing. |