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

📄 customcolumevent.java

📁 It is all about project scheduling. GanttProject is a tool for creating a project schedule by means
💻 JAVA
字号:
package net.sourceforge.ganttproject.task;public class CustomColumEvent {    public static final int EVENT_ADD = 0;    public static final int EVENT_REMOVE = 1;    protected final int myType;    protected final String myColName;    public CustomColumEvent(int type, String colName) {        myType = type;        myColName = colName;    }    public String getColName() {        return myColName;    }    public int getType() {        return myType;    }}

⌨️ 快捷键说明

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