Package org.jmule.updater

Examples of org.jmule.updater.JMUpdater


         nightly_build_dialog.setVisible(true);
      }
   
    // check for newer version if the option is enabled
    if(_pref.isCheckForUpdatesAtStartup()) {
      JMUpdater update = JMUpdater.getInstance();
      try {
       update.checkForUpdates();
      } catch (JMUpdaterException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      }
      if(update.isNewVersionAvailable()) {
        VersionChecker version_checker = new VersionChecker(main_window);
        SwingUtils.setWindowLocationRelativeTo(version_checker, main_window);
        version_checker.setVisible(true);
      }
    }
View Full Code Here

TOP

Related Classes of org.jmule.updater.JMUpdater

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.