eventconstants.java
来自「用applet实现很多应用小程序」· Java 代码 · 共 22 行
JAVA
22 行
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 + =
减小字号Ctrl + -
显示快捷键?