Package ch.mtSystems.jnc.view.dialogs

Examples of ch.mtSystems.jnc.view.dialogs.InputDialog.open()


    } else if(e.getSource() == bAddFlag)
    {
      InputDialog inputDialog = new InputDialog(JNC.getContentComposite().getShell());
      inputDialog.setTitle("New GCJ flag");
      inputDialog.setMessage("GCJ flag to add:");
      String flag = inputDialog.open();
      if(flag == null) return;
     
      AppController.getAppController().getCurrentProject().addGcjFlags(flag, false);
      (new TableItem(tGcjFlags, SWT.NONE)).setText(flag);
    } else if(e.getSource() == bRemoveFlag)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.