Adds one or more lines of text to the window. @param text The text to be appended. Multiple lines should be separated by \n.
(String text)
| 244 | lines should be separated by \n. |
| 245 | */ |
| 246 | public void append(String text) { |
| 247 | textPanel.append(text); |
| 248 | } |
| 249 | |
| 250 | void setFont() { |
| 251 | if (font!=null) |
no test coverage detected