Example #1
0
 private void addTestAlert(int x, int y, String text) {
   Alert alert = new Alert(text);
   alert.addButton("OK");
   alert.addButton("Cancel");
   alert.setPosition(x, y);
   root.add(alert);
   alert.adjustSize();
 }