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