stopcondition.java
来自「jooneDTE的源码」· Java 代码 · 共 23 行
JAVA
23 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?