am 4a292acc: Make ModifierKeySatate and ShiftKeyState non-public class

* commit '4a292acc6fc95f91fd9d16c37d4bedc514105b8c':
  Make ModifierKeySatate and ShiftKeyState non-public class
main
Tadashi G. Takaoka 2011-12-04 22:56:04 -08:00 committed by Android Git Automerger
commit ae4235fdd7
3 changed files with 4 additions and 4 deletions

View File

@ -107,7 +107,7 @@ public class KeyboardState {
@Override
public String toString() {
return "shiftKeyState=" + mShiftKeyState
+ " symbolKeyState=" + mSymbolKeyState;
return "[shift=" + mShiftKeyState
+ " symbol=" + mSymbolKeyState + "]";
}
}

View File

@ -20,7 +20,7 @@ import android.util.Log;
import com.android.inputmethod.keyboard.KeyboardSwitcher;
public class ModifierKeyState {
class ModifierKeyState {
protected static final String TAG = "ModifierKeyState";
protected static final boolean DEBUG = KeyboardSwitcher.DEBUG_STATE;

View File

@ -18,7 +18,7 @@ package com.android.inputmethod.keyboard.internal;
import android.util.Log;
public class ShiftKeyState extends ModifierKeyState {
class ShiftKeyState extends ModifierKeyState {
private static final int PRESSING_ON_SHIFTED = 3; // both temporary shifted & shift locked
private static final int IGNORING = 4;