📄 stopcondition.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 + -