Staging
v0.5.0
https://repo1.maven.org/maven2/org/prefuse/prefuse
Raw File
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
back to top