@param title Window title to set.
(String title)
| 336 | * Window title to set. |
| 337 | */ |
| 338 | public void setTitle(String title) { |
| 339 | ThreadUtil.checkJfxAndEnqueue(() -> stage.setTitle(title)); |
| 340 | } |
| 341 | |
| 342 | @Plugin(name = "MainWindow") |
| 343 | private final class WindowPlugin implements WorkspacePlugin, InternalPlugin { |
no test coverage detected