Package jSimMacs.display.dialog

Examples of jSimMacs.display.dialog.JSimRunWizard


        JSimLogic.getInstance().loadProjectAttributes(project);
      } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
      }
      JSimRunWizard wizard = new JSimRunWizard();
      if (item.isAnalyze())
        JSimLogic.getInstance().setUpAnalyzeWizard(wizard, project);
      else {
        wizard.setMenuBar();
        JSimLogic.getInstance().setUpWizard(wizard, project);
      }
      wizard.pack();
      // wizard.setSize(500, 400);
      wizard.setLocationRelativeTo(this);
      wizard.setVisible(true);
      // System.out.println(item.getProject().getName());

    }

  }
View Full Code Here

TOP

Related Classes of jSimMacs.display.dialog.JSimRunWizard

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.