public class GridChange extends Event implements Serializable
Grid.Grid,
GridBase,
Serialized Form| Modifier and Type | Field and Description |
|---|---|
static EventType<GridChange> |
GRID_CHANGE_EVENT
This is the event used by
GridChange. |
source| Constructor and Description |
|---|
GridChange(int row,
int column,
Object oldValue,
Object newValue)
Constructor of a GridChange when a change inside a
SpreadsheetCell is happening. |
| Modifier and Type | Method and Description |
|---|---|
int |
getColumn()
Return the column number of this change.
|
Object |
getNewValue()
Return the value after the change.
|
Object |
getOldValue()
Return the value before the change.
|
int |
getRow()
Return the row number of this change.
|
clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumedgetSource, toStringpublic static final EventType<GridChange> GRID_CHANGE_EVENT
GridChange.public GridChange(int row,
int column,
Object oldValue,
Object newValue)
SpreadsheetCell is happening.row - column - oldValue - newValue - public int getRow()
public int getColumn()
public Object getOldValue()
public Object getNewValue()