diff options
author | Ken Wakasa <kwakasa@google.com> | 2011-01-21 15:36:05 +0900 |
---|---|---|
committer | Ken Wakasa <kwakasa@google.com> | 2011-01-21 15:57:37 +0900 |
commit | e31e9424554d5f032f578830556913b4ba78f7f9 (patch) | |
tree | d4165848b60fb83e8d6c04acdbb77fb25a767ee5 /core/java/android/view/inputmethod | |
parent | 0e5bf5051b02bc382fb7e6c975511af499b31624 (diff) | |
download | frameworks_base-e31e9424554d5f032f578830556913b4ba78f7f9.zip frameworks_base-e31e9424554d5f032f578830556913b4ba78f7f9.tar.gz frameworks_base-e31e9424554d5f032f578830556913b4ba78f7f9.tar.bz2 |
Update class doc for InputMethodSubtype
bug: 3370290
Change-Id: Ib86f81c1a5f6c9acca34b586d810c6e94db1b552
Diffstat (limited to 'core/java/android/view/inputmethod')
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodSubtype.java | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodSubtype.java b/core/java/android/view/inputmethod/InputMethodSubtype.java index 39a0c19..ba425a6 100644 --- a/core/java/android/view/inputmethod/InputMethodSubtype.java +++ b/core/java/android/view/inputmethod/InputMethodSubtype.java @@ -22,13 +22,10 @@ import android.os.Parcelable; import java.util.Arrays; /** - * Information given to an {@link InputMethod} about a client connecting - * to it. - */ -/** - * InputMethodSubtype is a subtype contained in the input method. Subtype can describe - * locales (e.g. en_US, fr_FR...) and modes (e.g. voice, keyboard...), and is used for - * IME switch. The subtype allows the system to call the specified subtype of IME directly. + * This class is used to specify meta information of a subtype contained in an input method. + * Subtype can describe locale (e.g. en_US, fr_FR...) and mode (e.g. voice, keyboard...), and is + * used for IME switch and settings. The input method subtype allows the system to bring up the + * specified subtype of the designated input method directly. */ public final class InputMethodSubtype implements Parcelable { private final int mSubtypeNameResId; |