1 package prefuse.data.event; 2 3 import javax.swing.event.TableModelEvent ; 4 5 10 public interface EventConstants { 11 12 13 public static final int INSERT = TableModelEvent.INSERT; 14 15 public static final int UPDATE = TableModelEvent.UPDATE; 16 17 public static final int DELETE = TableModelEvent.DELETE; 18 19 public static final int ALL_COLUMNS = TableModelEvent.ALL_COLUMNS; 20 21 } | Popular Tags |