public String toString()

in mustella/src/main/java/marmotinni/DispatchKeyEvent.java [161:177]


    public String toString()
    {
		String s = "DispatchKeyEvent";
		if (chars != null)
			s += ": char = " + chars;
		if (keys != null)
			s += ": keys = " + keys.toString();
		if (type != null)
			s += ", type = " + type;
		if (shiftKey)
			s += ", shiftKey = true";
		if (ctrlKey)
			s += ", ctrlKey = true";
		if (repeatCount != 0)
			s += ", repeatCount = " + Integer.toString(repeatCount);
		return s;
	}