コード例 #1
0
 public static void main(String[] args) {
   MainFrame mainFrame = new MainFrame();
   mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   mainFrame.setSize(500, 720);
   mainFrame.setVisible(true);
   mainFrame.setResizable(false);
 }
コード例 #2
0
ファイル: Main.java プロジェクト: stendrikat/Emperior1.0
  public static void main(String[] args) throws Exception {
    initLogging();
    mainFrame = new MainFrame();
    operatingSystem = System.getProperty("os.name");

    CommandLineParser parser = new BasicParser();
    Options options = new Options();
    options.addOption("h", "help", false, "Print this usage information");
    options.addOption(
        "t",
        "test",
        true,
        "Name of the Bat-File which is executed for Compilation and Unit-Testing");
    options.addOption(
        "r",
        "run",
        true,
        "Name of the Bat-File which is executed for Compilation and running the project");
    options.addOption(
        "f",
        "folder",
        true,
        "Name of the Folder in which the exercises for the Experiment are stored");

    CommandLine commandLine = parser.parse(options, args);
    // read from command line
    if (commandLine.getOptions().length > 0) {
      readCommandLine(commandLine, options);
    }
    // read from property file
    else {
      readPropertyFile();
    }

    checkBatFile();

    mainFrame.init();

    mainFrame.setSize(800, 600);
    mainFrame.setVisible(true);
    mainFrame.addWindowListener(
        new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            addLineToLogFile("[Close] Emperior");
            System.exit(0);
          }
        });
    mainFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

    addLineToLogFile("[Start] Emperior");
    makeContiniousCopys();
  }
コード例 #3
0
ファイル: MainFrame.java プロジェクト: RKX1209/OseroGame
 public static void main(String[] args) {
   MainFrame frame = new MainFrame();
   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   frame.setVisible(true);
 }
コード例 #4
0
 public static void main(String[] arg) {
   final MainFrame frame = new MainFrame();
   frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
   frame.setVisible(true);
 }