use of org.cryptomator.ui.fxapp.FxApplication in project cryptomator by cryptomator.
the class FxApplicationStarter method start.
private void start() {
executor.submit(() -> {
LOG.debug("Starting JavaFX runtime...");
Platform.startup(() -> {
assert Platform.isFxApplicationThread();
LOG.info("JavaFX Runtime started.");
FxApplication app = fxAppComponent.get().application();
app.start();
future.complete(app);
});
});
}
Aggregations