diff options
author | 2012-07-13 14:01:02 +0900 | |
---|---|---|
committer | 2012-07-13 14:01:02 +0900 | |
commit | a004754b5705900362c6e8f9bb4bb62708f98242 (patch) | |
tree | 26b928a3ee40f9634be521a7ff1402b41aced4f8 /java/src/com/android/inputmethod/latin/SuggestedWords.java | |
parent | 5168480f301b76851bc4aed549fbc14ba6325136 (diff) | |
parent | e9808694fecbf7be776cd5cf8ec0333e158286b1 (diff) | |
download | latinime-a004754b5705900362c6e8f9bb4bb62708f98242.tar.gz latinime-a004754b5705900362c6e8f9bb4bb62708f98242.tar.xz latinime-a004754b5705900362c6e8f9bb4bb62708f98242.zip |
Merge remote-tracking branch 'goog/master' into mergescriptpackage
Diffstat (limited to 'java/src/com/android/inputmethod/latin/SuggestedWords.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SuggestedWords.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/SuggestedWords.java b/java/src/com/android/inputmethod/latin/SuggestedWords.java index f079c2112..88fc006df 100644 --- a/java/src/com/android/inputmethod/latin/SuggestedWords.java +++ b/java/src/com/android/inputmethod/latin/SuggestedWords.java @@ -125,6 +125,7 @@ public class SuggestedWords { public static final int KIND_HARDCODED = 5; // Hardcoded suggestion, e.g. punctuation public static final int KIND_APP_DEFINED = 6; // Suggested by the application public static final int KIND_SHORTCUT = 7; // A shortcut + public static final int KIND_PREDICTION = 8; // A prediction (== a suggestion with no input) public final String mWord; public final int mScore; public final int mKind; // one of the KIND_* constants above |