aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/ExpandableDictionary.java
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2012-05-29 04:43:54 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-05-29 04:43:54 -0700
commit961e676b9a6b8282b1049715523aa520d3b6a6e5 (patch)
tree80b2e356c2fa93334c2311d210afbbf1cdbc508b /java/src/com/android/inputmethod/latin/ExpandableDictionary.java
parent9a3211802baf11e5749a080e4f451ef7b795220b (diff)
parentc88f61215c5b9ca6e0cc3f776e3b7da19eec9cae (diff)
downloadlatinime-961e676b9a6b8282b1049715523aa520d3b6a6e5.tar.gz
latinime-961e676b9a6b8282b1049715523aa520d3b6a6e5.tar.xz
latinime-961e676b9a6b8282b1049715523aa520d3b6a6e5.zip
Merge "Set level 1 as the initial value of the valid words" into jb-dev
Diffstat (limited to 'java/src/com/android/inputmethod/latin/ExpandableDictionary.java')
-rw-r--r--java/src/com/android/inputmethod/latin/ExpandableDictionary.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java
index 358cd4d4d..34a92fd30 100644
--- a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java
+++ b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java
@@ -84,8 +84,7 @@ public class ExpandableDictionary extends Dictionary {
protected interface NextWord {
public Node getWordNode();
public int getFrequency();
- /** FcValue is a bit set */
- public int getFcValue();
+ public ForgettingCurveParams getFcParams();
public int notifyTypedAgainAndGetFrequency();
}
@@ -108,8 +107,8 @@ public class ExpandableDictionary extends Dictionary {
}
@Override
- public int getFcValue() {
- return mFrequency;
+ public ForgettingCurveParams getFcParams() {
+ return null;
}
@Override
@@ -138,8 +137,8 @@ public class ExpandableDictionary extends Dictionary {
}
@Override
- public int getFcValue() {
- return mFcp.getFc();
+ public ForgettingCurveParams getFcParams() {
+ return mFcp;
}
@Override