Ask for a path, and return it (possibly return the currentPath.) @param currentPath when entering the method @param dialogTitle to show @param textField to update with the path information
(final String currentPath, final String dialogTitle, final TextField textField)
| 402 | * @param textField to update with the path information |
| 403 | */ |
| 404 | private static void askForPath(final String currentPath, final String dialogTitle, final TextField textField) |
| 405 | { |
| 406 | GuiAssertions.assertIsJavaFXThread(); |
| 407 | askForPath(new File(currentPath), dialogTitle, textField); |
| 408 | } |
| 409 | |
| 410 | /** |
| 411 | * Ask for a path, and return it (possibly return the currentPath.) |
no test coverage detected