alwaysstop.java
来自「jooneDTE的源码」· Java 代码 · 共 25 行
JAVA
25 行
/* * AlwaysStop.java * * Created on August 25, 2004, 3:47 PM */package org.joone.dte.control;import org.joone.dte.StopCondition;import org.joone.dte.TaskListFactory;/** * Stops the DTE without conditions. * Indeed this class is absolutely useles, because if no condition has been * defined, the DTE stops anyway. * @author P.Marrone */public class AlwaysStop implements StopCondition { public boolean done(TaskListFactory tasks, int currentCycle) { return true; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?