1 import javax.swing.SwingUtilities;
2 import javax.swing.UIManager;
4 public class MotorSim {
6 public static void main(String args[]) throws Exception {
9 System.setProperty("apple.laf.useScreenMenuBar", "true");
11 "com.apple.mrj.application.apple.menu.about.name",
13 UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
14 } catch (Exception e1) {
17 SwingUtilities.invokeLater(new Runnable(){
20 new com.billkuker.rocketry.motorsim.visual.workbench.MotorWorkbench().setVisible(true);