diff options
author | satok <satok@google.com> | 2011-07-22 15:35:31 +0900 |
---|---|---|
committer | satok <satok@google.com> | 2011-07-22 15:50:22 +0900 |
commit | 3de3d6ad584d6f08f50aac1b04bc0fe6cb02fb09 (patch) | |
tree | 599daa4614afb1ef3dfd1454d3caee347ac0bba8 /core | |
parent | 7793719ca97571f5b3636d5a89cb067c71d627bd (diff) | |
download | frameworks_base-3de3d6ad584d6f08f50aac1b04bc0fe6cb02fb09.zip frameworks_base-3de3d6ad584d6f08f50aac1b04bc0fe6cb02fb09.tar.gz frameworks_base-3de3d6ad584d6f08f50aac1b04bc0fe6cb02fb09.tar.bz2 |
Fix the vendor build.
Change-Id: I856057c9418fd5194d78e34c4496bd43c520546f
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/view/textservice/SuggestionsInfo.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/java/android/view/textservice/SuggestionsInfo.java b/core/java/android/view/textservice/SuggestionsInfo.java index e2df7b8..b0ccbea 100644 --- a/core/java/android/view/textservice/SuggestionsInfo.java +++ b/core/java/android/view/textservice/SuggestionsInfo.java @@ -25,21 +25,21 @@ import android.os.Parcelable; public final class SuggestionsInfo implements Parcelable { /** * Flag of the attributes of the suggestions that can be obtained by - * {@link getSuggestionsAttibutes}: this tells that the requested word was found + * {@link #getSuggestionsAttributes}: this tells that the requested word was found * in the dictionary in the text service. */ public static final int RESULT_ATTR_IN_THE_DICTIONARY = 0x0001; /** Flag of the attributes of the suggestions that can be obtained by - * {@link getSuggestionsAttibutes}: this tells that there are one or more suggestions available - * for the requested word. This doesn't necessarily mean that the suggestions are actually in - * this SuggestionsInfo. For instance, the caller could have been asked to limit the maximum - * number of suggestions returned. + * {@link #getSuggestionsAttributes}: this tells that there are one or more suggestions + * available for the requested word. This doesn't necessarily mean that the suggestions + * are actually in this SuggestionsInfo. For instance, the caller could have been asked to + * limit the maximum number of suggestions returned. */ public static final int RESULT_ATTR_SUGGESTIONS_AVAILABLE = 0x0002; /** * Flag of the attributes of the suggestions that can be obtained by - * {@link getSuggestionsAttibutes}: this tells that the text service thinks the requested word - * looks a typo. + * {@link #getSuggestionsAttributes}: this tells that the text service thinks the requested + * word looks a typo. */ public static final int RESULT_ATTR_LOOKS_TYPO = 0x0004; private final int mSuggestionsAttributes; |