(Font font, boolean antialiased)
| 213 | } |
| 214 | |
| 215 | public void setFont(Font font, boolean antialiased) { |
| 216 | tc.fFont = font; |
| 217 | tc.iImage = null; |
| 218 | tc.fMetrics = null; |
| 219 | tc.antialiased = antialiased; |
| 220 | iColWidth[0] = 0; |
| 221 | if (isShowing()) updateDisplay(); |
| 222 | } |
| 223 | |
| 224 | /** Adds a single line to the end of this TextPanel. */ |
| 225 | public void appendLine(String text) { |
nothing calls this directly
no test coverage detected