|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
com.sas.table.DataCellChangedEvent
public class DataCellChangedEvent
Reports a change to a table's data cell(s).
An object that represents a table should create this event whenever a data cell, or a contiguous range of data cells, has been changed, and send it to all registered listeners for ContentsChangedEvent.
ContentsChangedSource
,
ColumnLabelChangedEvent
,
RowLabelChangedEvent
,
Serialized FormField Summary | |
---|---|
int |
colCount
The number of columns spanned by the cell range. |
int |
colIndex
The one-based identifier of the column that contains the first (or only) changed cell. |
int |
rowCount
The number of rows spanned by the cell range. |
int |
rowIndex
The one-based identifier of the row that contains the first (or only) changed cell. |
Constructor Summary | |
---|---|
DataCellChangedEvent(java.lang.Object source,
int rowIndex,
int colIndex,
int rowCount,
int colCount)
Constructs an event to signal a change to a range of data cells. |
Field Detail |
---|
public final int colIndex
public final int rowIndex
public final int colCount
public final int rowCount
Constructor Detail |
---|
public DataCellChangedEvent(java.lang.Object source, int rowIndex, int colIndex, int rowCount, int colCount)
source
- The table model whose data cell(s) has changed.rowIndex
- The one-based identifier of the row that contains the first
(or only) changed cell.colIndex
- The one-based identifier of the column that contains the first
(or only) changed cell.rowCount
- The number of rows that contain changed cells.colCount
- The number of columns that contain changed cells.
|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |