public interface ITableModelListener<T>
| Modifier and Type | Method and Description |
|---|---|
void |
modelChanged(ITableModel<T> model)
Called when the entire content of the model changed.
|
void |
rowAdded(ITableModel<T> model,
int index,
T value)
Called after a row is added to the model.
|
void |
rowDeleted(ITableModel<T> model,
int index,
T value)
Called after a row has been deleted.
|
void |
rowModified(ITableModel<T> model,
int index,
T value)
Called after a row has been changed.
|
void rowAdded(@Nonnull ITableModel<T> model, int index, @Nonnull T value) throws Exception
model - index - value - Exceptionvoid rowDeleted(@Nonnull ITableModel<T> model, int index, @Nonnull T value) throws Exception
model - index - The index of the deleted row in the table.value - The deleted value.Exceptionvoid rowModified(@Nonnull ITableModel<T> model, int index, @Nonnull T value) throws Exception
model - index - value - Exceptionvoid modelChanged(@Nullable ITableModel<T> model) throws Exception
model - ExceptionCopyright © 2017 etc.to. All rights reserved.