Skip to content

Instantly share code, notes, and snippets.

@ClarkTheCoder
Created July 24, 2015 02:17
Show Gist options
  • Save ClarkTheCoder/e52b2a630818dadc01a8 to your computer and use it in GitHub Desktop.
Save ClarkTheCoder/e52b2a630818dadc01a8 to your computer and use it in GitHub Desktop.
AlertBox
package sample;
import javafx.scene.control.Alert;
public class AlertBox {
public static void show(String txt) {
Alert alert = new Alert(Alert.AlertType.INFORMATION);
alert.setContentText(txt);
alert.showAndWait();
}
}
@PlusHaze
Copy link

lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment