Package ch.mtSystems.jnc.view.dialogs

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


      AppController.getAppController().loadPage(AppController.PAGE_SOURCE);
    } else if(e.getSource() == bOpenMainClass)
    {
      MainClassDialog mainClassDialog = new MainClassDialog(JNC.getContentComposite().getShell());
      mainClassDialog.setBlockOnOpen(true);
      Object[] oa = (Object[])mainClassDialog.open();
      if(oa == null) return;

      File outputDirSuggestion = (File)oa[0];
      File mainClassRessource = (File)oa[1];
      String mainClass = (String)oa[2];
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.