Merge "Add toString() method to Keyboard" into jb-mr1-dev

This commit is contained in:
Tadashi G. Takaoka 2012-08-08 00:08:10 -07:00 committed by Android (Google) Code Review
commit 732f27984e

View File

@ -219,6 +219,11 @@ public class Keyboard {
return code >= CODE_SPACE;
}
@Override
public String toString() {
return mId.toString();
}
public static class Params {
public KeyboardId mId;
public int mThemeId;