Set the window (and dock, or whatever necessary) title.
(String title)
| 420 | |
| 421 | /** Set the window (and dock, or whatever necessary) title. */ |
| 422 | public void setTitle(String title) { |
| 423 | // PApplicationFX.title = title; // store this in case the stage still null |
| 424 | // if (stage != null) { |
| 425 | stage.setTitle(title); |
| 426 | // } |
| 427 | } |
| 428 | |
| 429 | |
| 430 | /** Show or hide the window. */ |