KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > prefuse > data > event > EventConstants


1 package prefuse.data.event;
2
3 import javax.swing.event.TableModelEvent JavaDoc;
4
5 /**
6  * Constants used within prefuse data structure modification notifications.
7  *
8  * @author <a HREF="http://jheer.org">jeffrey heer</a>
9  */

10 public interface EventConstants {
11
12     /** Indicates a data insert operation. */
13     public static final int INSERT = TableModelEvent.INSERT;
14     /** Indicates a data update operation. */
15     public static final int UPDATE = TableModelEvent.UPDATE;
16     /** Indicates a data delete operation. */
17     public static final int DELETE = TableModelEvent.DELETE;
18     /** Indicates an operation that affects all columns of a table. */
19     public static final int ALL_COLUMNS = TableModelEvent.ALL_COLUMNS;
20     
21 } // end of interface EventConstants
22
Popular Tags