List of usage examples for javafx.scene.control Alert Alert
public Alert(@NamedArg("alertType") AlertType alertType, @NamedArg("contentText") String contentText, @NamedArg("buttonTypes") ButtonType... buttons)
From source file:de.perdoctus.ebikeconnect.gui.ActivitiesOverviewController.java
private void gpxExportFinished() { final Alert info = new Alert(Alert.AlertType.INFORMATION, "", ButtonType.OK); info.setTitle(rb.getString("gpx-export-finished")); info.setHeaderText(rb.getString("gpx-export-finished")); info.show();//w w w.j av a2 s .c o m }