1 16 17 package swingwtx.swing.event; 18 19 import swingwtx.swing.table.*; 20 21 import java.util.*; 22 23 public class TableColumnModelEvent extends EventObject { 24 25 protected int fromIndex; 26 protected int toIndex; 27 28 public TableColumnModelEvent(TableColumnModel source, int from, int to) { 29 super(source); 30 fromIndex = from; 31 toIndex = to; 32 } 33 public int getFromIndex() { return fromIndex; }; 34 public int getToIndex() { return toIndex; }; 35 } 36 37 | Popular Tags |