am 4a292acc: Make ModifierKeySatate and ShiftKeyState non-public class
* commit '4a292acc6fc95f91fd9d16c37d4bedc514105b8c': Make ModifierKeySatate and ShiftKeyState non-public classmain
commit
ae4235fdd7
|
@ -107,7 +107,7 @@ public class KeyboardState {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "shiftKeyState=" + mShiftKeyState
|
||||
+ " symbolKeyState=" + mSymbolKeyState;
|
||||
return "[shift=" + mShiftKeyState
|
||||
+ " symbol=" + mSymbolKeyState + "]";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue