本文整理了Java中ij.ImageJ.isVisible()
方法的一些代码示例,展示了ImageJ.isVisible()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ImageJ.isVisible()
方法的具体详情如下:
包路径:ij.ImageJ
类名称:ImageJ
方法名:isVisible
暂无
代码示例来源:origin: net.imagej/imagej-legacy
public boolean isVisible() {
final ImageJ ij = IJ.getInstance();
if (ij == null) return false;
return ij.isVisible();
}
代码示例来源:origin: net.imagej/imagej-legacy
@Override
public void run(final String arg) {
final ImageJ ij = IJ.getInstance();
if (firstTime && ij != null && ij.isVisible()) {
final boolean proceed =
IJ.showMessageWithCancel("Warning", ""
代码示例来源:origin: sc.fiji/Fiji_Updater
/**
* Determine whether we should not bother to show the dialog.
*
* @return whether we're in batch mode or other circumstances indicate we
* should not run the ImageJ updater interactively
*/
@Override
public boolean isBatchMode() {
return IJ.getInstance() == null || !IJ.getInstance().isVisible()
|| Interpreter.isBatchMode();
}
}
内容来源于网络,如有侵权,请联系作者删除!