Package com.subgraph.vega.application.update

Examples of com.subgraph.vega.application.update.UpdateCheckTask


    }
   
    private void maybePerformUpdateCheck(Shell shell, int buildNumber) {
    final IPreferenceStore preferences = Activator.getDefault().getPreferenceStore();
    if(preferences.getBoolean(IPreferenceConstants.P_UPDATE_CHECK_ENABLED) && (buildNumber != 0)) {
      final UpdateCheckTask task = new UpdateCheckTask(shell, buildNumber);
      final Thread thread = new Thread(task);
      thread.start();
    }
  }
View Full Code Here

TOP

Related Classes of com.subgraph.vega.application.update.UpdateCheckTask

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.