Package de.chris_soft.fyllgen.widget.dialog

Examples of de.chris_soft.fyllgen.widget.dialog.TextInputDialog


   * @return Eingegebener Text.
   */
  public static String askForTextInput(final Shell parent, final String msg) {
    Display.getDefault().syncExec(new Runnable() {
      public void run() {
        TextInputDialog tid = new TextInputDialog(parent, msg, false);
        tid.open();
        textinput = tid.getUserInput();
      }
    });
    return textinput;
  }
View Full Code Here


   * @return Eingegebener Text.
   */
  public static String askForPasswordInput(final Shell parent, final String msg) {
    Display.getDefault().syncExec(new Runnable() {
      public void run() {
        TextInputDialog tid = new TextInputDialog(parent, msg, true);
        tid.open();
        textinput = tid.getUserInput();
      }
    });
    return textinput;
  }
View Full Code Here

TOP

Related Classes of de.chris_soft.fyllgen.widget.dialog.TextInputDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.