Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit efd8b838 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Add MoreKeySpec.toString() method for debugging

Change-Id: Icf9c6e15521849ffc51911c1e256c9815c1960f4
parent d157bb0d
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -84,6 +84,15 @@ public class KeySpecParser {
            }
            mIconId = getIconId(moreKeySpec);
        }

        @Override
        public String toString() {
            final String label = (mIconId == KeyboardIconsSet.ICON_UNDEFINED ? mLabel
                    : PREFIX_ICON + KeyboardIconsSet.getIconName(mIconId));
            final String output = (mCode == Keyboard.CODE_OUTPUT_TEXT ? mOutputText
                    : String.format("0x%04x", mCode));
            return label + "/" + output;
        }
    }

    private KeySpecParser() {