⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stopcondition.java

📁 jooneDTE的源码
💻 JAVA
字号:
/* * stopVerifier.java * * Created on August 25, 2004, 3:41 PM */package org.joone.dte;/** * This interface represents the verifier of the stop condition. * Its method done is called after the processing phase to verify if * the DTE must continue to eleborate the next cycle. * @author  P.Marrone */public interface StopCondition {    /**     * Called to verify the stop condition     * @return true if the DTE must stop     * @param tasks contains all the current tasks     * @param currentCycle the current iteration of the DTE     */    boolean done(TaskListFactory tasks, int currentCycle);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -