当前位置: 首页>>代码示例>>Java>>正文


Java HostServicesDelegate类代码示例

本文整理汇总了Java中com.sun.javafx.application.HostServicesDelegate的典型用法代码示例。如果您正苦于以下问题:Java HostServicesDelegate类的具体用法?Java HostServicesDelegate怎么用?Java HostServicesDelegate使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


HostServicesDelegate类属于com.sun.javafx.application包,在下文中一共展示了HostServicesDelegate类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: openUrl

import com.sun.javafx.application.HostServicesDelegate; //导入依赖的package包/类
protected void openUrl(String url) {
    HostServicesDelegate hostServices = HostServicesFactory.getInstance(this);
    getHostServices().showDocument(url);
}
 
开发者ID:NLCR,项目名称:komplexni-validator,代码行数:5,代码来源:AbstractController.java

示例2: getHost

import com.sun.javafx.application.HostServicesDelegate; //导入依赖的package包/类
public static HostServicesDelegate getHost() {
	return host;
}
 
开发者ID:truffle-hog,项目名称:truffle-hog,代码行数:4,代码来源:Main.java

示例3: checkVersion

import com.sun.javafx.application.HostServicesDelegate; //导入依赖的package包/类
public void checkVersion() {
	final Optional<String> versionXML = getVersionXML(SHOOTOFF_DOMAIN + VERSION_METADATA_NAME);

	if (versionXML.isPresent()) {
		final Optional<String> stableVersion = parseField(versionXML.get(), "stableRelease", "version");

		if (stableVersion.isPresent() && VersionChecker.compareVersions(stableVersion.get(), version.get()) > 0) {
			final Optional<String> downloadLink = parseField(versionXML.get(), "stableRelease", "download");

			final String link;

			if (downloadLink.isPresent())
				link = downloadLink.get();
			else
				link = SHOOTOFF_DOMAIN;

			final Alert shootoffWelcome = new Alert(AlertType.INFORMATION);
			shootoffWelcome.setTitle("ShootOFF Updated");
			shootoffWelcome.setHeaderText("This version of ShootOFF is outdated!");
			shootoffWelcome.setResizable(true);

			final FlowPane fp = new FlowPane();
			final Label lbl = new Label(
					"The current stable release of ShootOFF is " + stableVersion.get() + ", but you are running "
							+ version.get() + ". " + "You can download the current version of ShootOFF here:\n\n");

			final Hyperlink lnk = new Hyperlink(link);

			lnk.setOnAction((event) -> {
				final HostServicesDelegate hostServices = HostServicesFactory.getInstance(this);
				hostServices.showDocument(link);
				lnk.setVisited(true);
			});

			fp.getChildren().addAll(lbl, lnk);

			shootoffWelcome.getDialogPane().contentProperty().set(fp);
			shootoffWelcome.showAndWait();
		} else if (stableVersion.isPresent() && stableVersion.get().compareTo(version.get()) < 0) {
			logger.warn("Future version of ShootOFF? stableVersion = {}, this.version = {}", stableVersion.get(),
					version.get());
		} else {
			logger.debug("ShootOFF is up to date");
		}
	}
}
 
开发者ID:phrack,项目名称:ShootOFF,代码行数:47,代码来源:Main.java

示例4: openInBrowser

import com.sun.javafx.application.HostServicesDelegate; //导入依赖的package包/类
void openInBrowser(String url) {
    HostServicesDelegate hostServices = HostServicesFactory.getInstance(this);
    hostServices.showDocument(url);
}
 
开发者ID:ancientwinds,项目名称:jCHEKS_ChatGUI,代码行数:5,代码来源:JavaFxViewController.java

示例5: openBlockExplorer

import com.sun.javafx.application.HostServicesDelegate; //导入依赖的package包/类
private void openBlockExplorer(WalletTransaction item) {
    HostServicesDelegate hostServices = HostServicesFactory.getInstance(CATE.getInstance());
    hostServices.showDocument(BlockExplorerResolver.getUrl(item));
}
 
开发者ID:rnicoll,项目名称:cate,代码行数:5,代码来源:MainController.java


注:本文中的com.sun.javafx.application.HostServicesDelegate类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。