Class RowDeleteDataChange
java.lang.Object
org.eclipse.nebula.widgets.nattable.datachange.RowDeleteDataChange
- All Implemented Interfaces:
DataChange
DataChange implementation to track row delete operations. Is used in
persistent mode and can only discard a row delete operation by adding it
again via RowInsertCommand.- Since:
- 1.6
-
Constructor Summary
ConstructorsConstructorDescriptionRowDeleteDataChange(int rowIndex, Object value) Create aRowDeleteDataChangethat is able to revert the performed row delete operation. -
Method Summary
Modifier and TypeMethodDescriptionvoiddiscard(DataChangeLayer layer) Discard the change.getKey()protected ObjectgetValue()voidsave(DataChangeLayer layer) Save the change.voidUpdate the locally stored key.
-
Constructor Details
-
RowDeleteDataChange
Create aRowDeleteDataChangethat is able to revert the performed row delete operation.- Parameters:
rowIndex- The row index at which the row should be inserted again.value- The row object that should be inserted again.
-
-
Method Details
-
discard
Description copied from interface:DataChangeDiscard the change.- Specified by:
discardin interfaceDataChange- Parameters:
layer- TheDataChangeLayerused to perform index-position transformations and to trigger the necessary commands to save.
-
save
Description copied from interface:DataChangeSave the change.- Specified by:
savein interfaceDataChange- Parameters:
layer- TheDataChangeLayerused to perform index-position transformations and to trigger the necessary commands to save.
-
getKey
- Specified by:
getKeyin interfaceDataChange- Returns:
- The key used to identify the change in the backing data.
-
updateKey
Description copied from interface:DataChangeUpdate the locally stored key. Used in case the key changed because of structural changes.- Specified by:
updateKeyin interfaceDataChange- Parameters:
key- The updated key.
-
getValue
- Returns:
- The row object that was deleted.
-