| java.lang.Object java.util.EventObject nextapp.echo2.app.event.TableColumnModelEvent
TableColumnModelEvent | public class TableColumnModelEvent extends EventObject (Code) | | An event which describes an update to a TableColumnModel
|
Method Summary | |
public int | getFromIndex() Returns the index from which the column was moved or removed. | public int | getToIndex() Returns the index to which the column was moved or added. |
TableColumnModelEvent | public TableColumnModelEvent(TableColumnModel source, int fromIndex, int toIndex)(Code) | | Creates a new TableColumnModelEvent .
Parameters: source - the updated TableColumnModel . Parameters: fromIndex - the index from which the column was moved or removed(relevant to remove and move operations) Parameters: toIndex - the index to which the column was moved or added (relevant to move and add operations) |
getFromIndex | public int getFromIndex()(Code) | | Returns the index from which the column was moved or removed.
This method is only relevant to remove and move operations.
the index from which the column was moved or removed |
getToIndex | public int getToIndex()(Code) | | Returns the index to which the column was moved or added.
This method is only relevant to move and add operations.
the index to which the column was moved or added |
|
|