Package net.sourceforge.fullsync.ui

Examples of net.sourceforge.fullsync.ui.GuiController


         * }
         */
      }
      else {
        try {
          GuiController guiController = new GuiController(preferences, profileManager, sync);
          guiController.startGui(line.hasOption('m'));

          if (!line.hasOption('P') && !preferences.getHelpShown() && (null == System.getProperty("net.sourceforge.fullsync.skipHelp"))) {
            preferences.setHelpShown(true);
            preferences.save();
            File f = new File("docs/manual/manual.html");
            if (f.exists()) {
              GuiController.launchProgram(f.getAbsolutePath());
            }
          }

          if (listenerStarupException != null) {
            ExceptionHandler.reportException("Unable to start incoming connections listener.", listenerStarupException);
          }

          if (preferences.getAutostartScheduler()) {
            profileManager.startScheduler();
          }

          guiController.run();
          guiController.disposeGui();
        }
        catch (Exception ex) {
          ExceptionHandler.reportException(ex);
        }
        finally {
View Full Code Here

TOP

Related Classes of net.sourceforge.fullsync.ui.GuiController

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.