Class RowDeleteCommandHandler<T>

java.lang.Object
org.eclipse.nebula.widgets.nattable.data.command.RowDeleteCommandHandler<T>
Type Parameters:
T - The type contained in the backing data list.
All Implemented Interfaces:
ILayerCommandHandler<RowDeleteCommand>

public class RowDeleteCommandHandler<T> extends Object implements ILayerCommandHandler<RowDeleteCommand>
Default command handler for the RowDeleteCommand. Operates on a List to remove row objects by index. Therefore this command handler should be registered on the body DataLayer.

This command handler fires a RowObjectDeleteEvent on completion that also carries the deleted object.

Since:
1.6
  • Constructor Details

    • RowDeleteCommandHandler

      public RowDeleteCommandHandler(List<T> bodyData)
      Parameters:
      bodyData - The backing data list on which the delete operation should be performed. Should be the same list that is used by the data provider.
  • Method Details