Beispiel #1
0
  public static void main(String[] args) throws MalformedURLException {
    Utils.configureLogger();
    System.setProperty("apple.laf.useScreenMenuBar", "true");
    System.setProperty("com.apple.mrj.application.apple.menu.about.name", "RipMe");
    logger = Logger.getLogger(App.class);
    logger.info("Initialized ripme v" + UpdateUtils.getThisJarVersion());

    if (args.length > 0) {
      handleArguments(args);
    } else {
      MainWindow mw = new MainWindow();
      SwingUtilities.invokeLater(mw);
    }
  }