(Graphics g, int ofs, boolean sel)
| 83 | } |
| 84 | |
| 85 | public void drawItem(Graphics g, int ofs, boolean sel) { |
| 86 | screenWidth=g.getClipWidth(); |
| 87 | if (img != null && img.getWidth() > 0) { |
| 88 | if (!collapsed) { |
| 89 | g.drawImage(img, screenWidth/2, 0, Graphics.TOP|Graphics.HCENTER); |
| 90 | } |
| 91 | } |
| 92 | VirtualCanvas.getInstance().repaint(); |
| 93 | super.drawItem(g, ofs, sel); |
| 94 | } |
| 95 | |
| 96 | public boolean isSelectable() { return selectable; } |
| 97 | } |
nothing calls this directly
no test coverage detected