(String title, String message)
| 1435 | } |
| 1436 | |
| 1437 | @Override |
| 1438 | public void showWarningMessage(String title, String message) |
| 1439 | { |
| 1440 | GuiAssertions.assertIsNotJavaFXThread(); |
| 1441 | Alert alert = GuiUtility.runOnJavaFXThreadNow(() -> new Alert(Alert.AlertType.WARNING)); |
| 1442 | alert.setTitle(title); |
| 1443 | alert.setContentText(message); |
| 1444 | GuiUtility.runOnJavaFXThreadNow(alert::showAndWait); |
| 1445 | } |
| 1446 | |
| 1447 | @Override |
| 1448 | public Optional<String> showInputDialog(String title, String message, String initialValue) |
nothing calls this directly
no test coverage detected