All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sitoolkit.wt.gui.infra.fx.AlertUtils Maven / Gradle / Ivy

The newest version!
package io.sitoolkit.wt.gui.infra.fx;

import javafx.scene.control.Alert;
import javafx.scene.control.Alert.AlertType;

public class AlertUtils {

  public AlertUtils() {
    // TODO Auto-generated constructor stub
  }

  public static void info(String message) {
    Alert alert = new Alert(AlertType.INFORMATION);
    alert.setTitle("");
    alert.setContentText("");
    alert.setHeaderText(message);
    alert.show();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy