1 7 8 package javax.swing.event; 9 10 import java.util.EventObject ; 11 import javax.swing.table.*; 12 13 31 public class TableColumnModelEvent extends java.util.EventObject  32 { 33 37 38 protected int fromIndex; 39 40 41 protected int toIndex; 42 43 47 55 public TableColumnModelEvent(TableColumnModel source, int from, int to) { 56 super(source); 57 fromIndex = from; 58 toIndex = to; 59 } 60 61 65 66 public int getFromIndex() { return fromIndex; }; 67 68 69 public int getToIndex() { return toIndex; }; 70 } 71 | Popular Tags |