(Graphics g, String val)
| 87 | } |
| 88 | |
| 89 | public static void drawLeftCommand(Graphics g, String val){ |
| 90 | g.setColor(0xffffff); |
| 91 | g.setFont(getBoldFont()); |
| 92 | int tw = getBoldFont().stringWidth(val); |
| 93 | FontCache.drawString(g,val, 2, scHeight, Graphics.LEFT | Graphics.BOTTOM); |
| 94 | } |
| 95 | |
| 96 | public static void drawRightCommand(Graphics g, String val){ |
| 97 | g.setColor(0xffffff); |
no test coverage detected