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

📄 delay.java

📁 It is all about project scheduling. GanttProject is a tool for creating a project schedule by means
💻 JAVA
字号:
package net.sourceforge.ganttproject.delay;import net.sourceforge.ganttproject.task.TaskInfo;/** * This class represents very basicaly delays. There are three type of delays : - * No delay - Normal delay - Critical delay (when the related task is critical) *  * @author bbaranne */public class Delay implements TaskInfo {    public static final int NONE = -1;    public static final int NORMAL = 0;    public static final int CRITICAL = 1;    private int myType = NONE;    private Delay(int type) {        myType = type;    }    public int getType() {        return myType;    }    public void setType(int type) {        myType = type;    }    public static Delay getDelay(int type) {        return new Delay(type);    }}

⌨️ 快捷键说明

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