Class AbstractMultiRowCommand

java.lang.Object
org.eclipse.nebula.widgets.nattable.command.AbstractMultiRowCommand
All Implemented Interfaces:
ILayerCommand
Direct Known Subclasses:
AutoResizeRowsCommand, MultiRowHideCommand, MultiRowResizeCommand, RowDeleteCommand, SelectRowsCommand

public abstract class AbstractMultiRowCommand extends Object implements ILayerCommand
Abstract implementation for commands that should process multiple rows.
  • Constructor Details

    • AbstractMultiRowCommand

      protected AbstractMultiRowCommand(ILayer layer, int... rowPositions)
      Parameters:
      layer - The ILayer to which the positions match.
      rowPositions - The positions that should be processed by this command.
    • AbstractMultiRowCommand

      protected AbstractMultiRowCommand(AbstractMultiRowCommand command)
      Clone constructor
      Parameters:
      command - The command to clone.
  • Method Details

    • getRowPositions

      public Collection<Integer> getRowPositions()
      Returns:
      The unique row positions that should be processed by this command.
    • getRowPositionsArray

      public int[] getRowPositionsArray()
      Returns:
      The unique row positions that should be processed by this command.
      Since:
      2.0
    • setRowPositions

      protected final void setRowPositions(ILayer layer, int... rowPositions)
      Parameters:
      layer - The ILayer to which the positions match.
      rowPositions - The positions that should be processed by this command.
    • convertToTargetLayer

      public boolean convertToTargetLayer(ILayer targetLayer)
      Description copied from interface: ILayerCommand
      Convert the row/column coordinates the command might be carrying from the source layer to the destination (target) layer. If it is not possible to convert the command to the target layer, then this method will return false and the state of this command object will remain unchanged. Note: Commands should not be processed if they fail conversion.
      Specified by:
      convertToTargetLayer in interface ILayerCommand
      Parameters:
      targetLayer - the target layer
      Returns:
      true if the command is valid after conversion, false if the command is no longer valid.