Sets the title of the application window. This title is prefixed with the application name. @param title The new title. @see #getTitle()
(String title)
| 1362 | * @see #getTitle() |
| 1363 | */ |
| 1364 | @Override |
| 1365 | public void setTitle(String title) { |
| 1366 | if (getShowHostName()) { |
| 1367 | title = "rtext (" + getHostName() + ") - " + title; |
| 1368 | } |
| 1369 | else { |
| 1370 | title = "rtext - " + title; |
| 1371 | } |
| 1372 | super.setTitle(title); |
| 1373 | } |
| 1374 | |
| 1375 | |
| 1376 | /** |
no test coverage detected