(Graphics g, String val)
| 94 | } |
| 95 | |
| 96 | public static void drawRightCommand(Graphics g, String val){ |
| 97 | g.setColor(0xffffff); |
| 98 | g.setFont(getBoldFont()); |
| 99 | int tw = getBoldFont().stringWidth(val); |
| 100 | FontCache.drawString(g,val, scWidth-tw-2, scHeight, Graphics.LEFT | Graphics.BOTTOM); |
| 101 | } |
| 102 | |
| 103 | public static Font getBoldFont() { |
| 104 | return boldFont; |
no test coverage detected