📄 eventconstants.java
字号:
package prefuse.data.event;
import javax.swing.event.TableModelEvent;
/**
* Constants used within prefuse data structure modification notifications.
*
* @author <a href="http://jheer.org">jeffrey heer</a>
*/
public interface EventConstants {
/** Indicates a data insert operation. */
public static final int INSERT = TableModelEvent.INSERT;
/** Indicates a data update operation. */
public static final int UPDATE = TableModelEvent.UPDATE;
/** Indicates a data delete operation. */
public static final int DELETE = TableModelEvent.DELETE;
/** Indicates an operation that affects all columns of a table. */
public static final int ALL_COLUMNS = TableModelEvent.ALL_COLUMNS;
} // end of interface EventConstants
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -