(int iWidth, int iHeight)
| 92 | } |
| 93 | |
| 94 | void makeImage(int iWidth, int iHeight) { |
| 95 | iImage=createImage(iWidth, iHeight); |
| 96 | if (gImage!=null) |
| 97 | gImage.dispose(); |
| 98 | gImage=iImage.getGraphics(); |
| 99 | gImage.setFont(fFont); |
| 100 | Java2.setAntialiasedText(gImage, antialiased); |
| 101 | if (fMetrics==null) |
| 102 | fMetrics=gImage.getFontMetrics(); |
| 103 | } |
| 104 | |
| 105 | void drawColumnLabels(int iWidth) { |
| 106 | gImage.setColor(Color.darkGray); |
no test coverage detected