/**
  * Prints a request for a text input to the window. <br>
  * <b>Example:</b> {@code String name = FancyMessageBox.askForTextInput("What is your nickname?",
  * "Nicknames");}
  *
  * @param message the text in the FancyMessageBox
  * @param title the title of the FancyMessageBox
  * @return the user input as a string
  */
 public static String askForTextInput(String message, String title) {
   return fancyMessageBox.askForTextInput(message, title);
 }