(String title, String message, String initialValue)
| 1445 | } |
| 1446 | |
| 1447 | @Override |
| 1448 | public Optional<String> showInputDialog(String title, String message, String initialValue) |
| 1449 | { |
| 1450 | GuiAssertions.assertIsNotJavaFXThread(); |
| 1451 | TextInputDialog dialog = GuiUtility.runOnJavaFXThreadNow(() -> new TextInputDialog(initialValue)); |
| 1452 | dialog.setTitle(title); |
| 1453 | dialog.setContentText(message); |
| 1454 | return GuiUtility.runOnJavaFXThreadNow(dialog::showAndWait); |
| 1455 | } |
| 1456 | |
| 1457 | @Override |
| 1458 | public void showLevelUpInfo(CharacterFacade character, int oldLevel) |
nothing calls this directly
no test coverage detected