javafx.application.Application.stop()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(112)

本文整理了Java中javafx.application.Application.stop()方法的一些代码示例,展示了Application.stop()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Application.stop()方法的具体详情如下:
包路径:javafx.application.Application
类名称:Application
方法名:stop

Application.stop介绍

暂无

代码示例

代码示例来源:origin: de.roskenet/springboot-javafx-support

@Override
public void stop() throws Exception {
  super.stop();
  if (applicationContext != null) {
    applicationContext.close();
  } // else: someone did it already
}

代码示例来源:origin: com.nexitia.emaginplatform/emagin-jfxcore-engine

/**
 * @{inheritedDoc}
 */
@Override
public void stop() throws Exception {
 super.stop();
 pool.shutdownNow();
 VLExecutorService.shutDown();
}

代码示例来源:origin: at.bestsolution.efxclipse.rt/org.eclipse.fx.osgi.util

@Override
  public void stop() throws Exception {
    super.stop();
    this.osgiApp.returnValue = this.osgiApp.jfxStop();
  }
}

代码示例来源:origin: at.bestsolution.efxclipse.rt/org.eclipse.fx.ui.workbench.fx

@Override
public void stop() throws Exception {
  super.stop();
  this.e4Application.jfxStop();
}

代码示例来源:origin: ssaring/sportstracker

@Override
public void stop() throws Exception {
  document.storeOptions();
  LOGGER.info("Exiting application...");
  super.stop();
}

代码示例来源:origin: us.ihmc/valkyrie

@Override
public void stop() throws Exception
{
 super.stop();
 ui.stop();
 Platform.exit();
}

代码示例来源:origin: us.ihmc/ihmc-path-planning-visualizers

@Override
public void stop() throws Exception
{
 super.stop();
 ui.stop();
 Platform.exit();
}

代码示例来源:origin: us.ihmc/valkyrie

@Override
public void stop() throws Exception
{
 super.stop();
 ui.stop();
 ros2Node.destroy();
 Platform.exit();
}

代码示例来源:origin: us.ihmc/ihmc-footstep-planning-visualizers

@Override
public void stop() throws Exception
{
 super.stop();
 messager.closeMessager();
 module.stop();
 ui.stop();
}

代码示例来源:origin: us.ihmc/valkyrie

@Override
public void stop() throws Exception
{
 super.stop();
 messager.closeMessager();
 messageConverter.destroy();
 ui.stop();
 Platform.exit();
}

代码示例来源:origin: us.ihmc/ihmc-footstep-planning-visualizers

@Override
public void stop() throws Exception
{
 super.stop();
 messager.closeMessager();
 messageConverter.destroy();
 ui.stop();
 Platform.exit();
}

代码示例来源:origin: us.ihmc/ihmc-footstep-planning-visualizers

@Override
public void stop() throws Exception
{
 super.stop();
 module.stop();
 messager.closeMessager();
 messageConverter.destroy();
 ui.stop();
 Platform.exit();
}

代码示例来源:origin: org.jrebirth.af/core

LOGGER.log(STOP_APPLICATION, this.getClass().getSimpleName());
preStop();
super.stop();

相关文章

微信公众号

最新文章

更多