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


Java Computer类代码示例

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


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

示例1: VizGUI

import edu.mit.csail.sdg.alloy4.Computer; //导入依赖的package包/类
/**
 * Creates a new visualization GUI window; this method can only be called by
 * the AWT event thread.
 * 
 * @param standalone - whether the JVM should shutdown after the last file
 *            is closed
 * @param xmlFileName - the filename of the incoming XML file; "" if there's
 *            no file to open
 * @param windowmenu - if standalone==false and windowmenu!=null, then this
 *            will be added as a menu on the menubar
 * @param enumerator - if it's not null, it provides solution enumeration
 *            ability
 * @param evaluator - if it's not null, it provides solution evaluation
 *            ability
 *            <p>
 *            Note: if standalone==false and xmlFileName.length()==0, then
 *            we will initially hide the window.
 */
public VizGUI(boolean standalone, String xmlFileName, JMenu windowmenu, Computer enumerator, Computer evaluator) {
	this(standalone, xmlFileName, windowmenu, enumerator, evaluator, true);
}
 
开发者ID:AlloyTools,项目名称:org.alloytools.alloy,代码行数:22,代码来源:VizGUI.java

示例2: VizGUI

import edu.mit.csail.sdg.alloy4.Computer; //导入依赖的package包/类
/** Creates a new visualization GUI window; this method can only be called by the AWT event thread.
 * @param standalone - whether the JVM should shutdown after the last file is closed
 * @param xmlFileName - the filename of the incoming XML file; "" if there's no file to open
 * @param windowmenu - if standalone==false and windowmenu!=null, then this will be added as a menu on the menubar
 * @param enumerator - if it's not null, it provides solution enumeration ability
 * @param evaluator - if it's not null, it provides solution evaluation ability
 *
 * <p> Note: if standalone==false and xmlFileName.length()==0, then we will initially hide the window.
 */
public VizGUI(boolean standalone, String xmlFileName, JMenu windowmenu, Computer enumerator, Computer evaluator) {
   this(standalone, xmlFileName, windowmenu, enumerator, evaluator, true);
}
 
开发者ID:ModelWriter,项目名称:Tarski,代码行数:13,代码来源:VizGUI.java


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