aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-12-18 03:50:20 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-12-18 03:50:20 -0800
commitd6ba10120c345fc9bc918f74cf4e42d80b826d11 (patch)
treefb2d6f76fc9871ddc507c8d1ec7579ac40f42ac3 /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
parent694e94a270b5df1325f6b9575d0e9bde2b79eeca (diff)
parent4e1dab8cfaad891fe041ed8d71893186c05cef71 (diff)
downloadlatinime-d6ba10120c345fc9bc918f74cf4e42d80b826d11.tar.gz
latinime-d6ba10120c345fc9bc918f74cf4e42d80b826d11.tar.xz
latinime-d6ba10120c345fc9bc918f74cf4e42d80b826d11.zip
am 4e1dab8c: Move KeyboardBuilder and KeyboardParams classes into Keyboard class
* commit '4e1dab8cfaad891fe041ed8d71893186c05cef71': Move KeyboardBuilder and KeyboardParams classes into Keyboard class
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
index b479ff4ce..3d26d972d 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
@@ -25,8 +25,6 @@ import com.android.inputmethod.keyboard.Key;
import com.android.inputmethod.keyboard.Keyboard;
import com.android.inputmethod.keyboard.KeyboardSwitcher;
import com.android.inputmethod.keyboard.KeyboardView;
-import com.android.inputmethod.keyboard.internal.KeyboardBuilder;
-import com.android.inputmethod.keyboard.internal.KeyboardParams;
import com.android.inputmethod.latin.LatinImeLogger;
import com.android.inputmethod.latin.R;
import com.android.inputmethod.latin.SuggestedWords;
@@ -39,7 +37,7 @@ public class MoreSuggestions extends Keyboard {
super(params);
}
- public static class Builder extends KeyboardBuilder<Builder.MoreSuggestionsParam> {
+ public static class Builder extends Keyboard.Builder<Builder.MoreSuggestionsParam> {
private static final boolean DBG = LatinImeLogger.sDBG;
private final MoreSuggestionsView mPaneView;
@@ -47,7 +45,7 @@ public class MoreSuggestions extends Keyboard {
private int mFromPos;
private int mToPos;
- public static class MoreSuggestionsParam extends KeyboardParams {
+ public static class MoreSuggestionsParam extends Keyboard.Params {
private final int[] mWidths = new int[SuggestionsView.MAX_SUGGESTIONS];
private final int[] mRowNumbers = new int[SuggestionsView.MAX_SUGGESTIONS];
private final int[] mColumnOrders = new int[SuggestionsView.MAX_SUGGESTIONS];