本文整理汇总了Java中org.eclipse.swt.SWT.getVersion方法的典型用法代码示例。如果您正苦于以下问题:Java SWT.getVersion方法的具体用法?Java SWT.getVersion怎么用?Java SWT.getVersion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.swt.SWT
的用法示例。
在下文中一共展示了SWT.getVersion方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: SWTVersionGetter
import org.eclipse.swt.SWT; //导入方法依赖的package包/类
public
SWTVersionGetter(
UpdateChecker _checker )
{
this.platform = SWT.getPlatform();
this.currentVersion = SWT.getVersion();
this.latestVersion = 0;
checker = _checker;
}
示例2: performAutoCheck
import org.eclipse.swt.SWT; //导入方法依赖的package包/类
protected void performAutoCheck(final boolean start_of_day) {
boolean check_at_start = false;
boolean check_periodic = false;
boolean bOldSWT = SWT.getVersion() < 3139;
// no update checks for java web start
if (!SystemProperties.isJavaWebStartInstance()) {
// force check when SWT is really old
check_at_start = COConfigurationManager.getBooleanParameter("update.start")
|| bOldSWT;
check_periodic = COConfigurationManager.getBooleanParameter("update.periodic");
}
// periodic -> check at start as well
check_at_start = check_at_start || check_periodic;
if ((check_at_start && start_of_day) || (check_periodic && !start_of_day)) {
performCheck(bOldSWT, true, false, null ); // this will implicitly do usage stats
} else {
new DelayedEvent("UpdateMon:wait2", 5000, new AERunnable() {
@Override
public void runSupport() {
if (start_of_day) {
UIFunctions uiFunctions = UIFunctionsManager.getUIFunctions();
if (uiFunctions != null) {
uiFunctions.setStatusText("");
}
}
CoreUpdateChecker.doUsageStats();
}
});
}
}