Class AbstractMultiColumnCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.command.AbstractMultiColumnCommand
- All Implemented Interfaces:
ILayerCommand
- Direct Known Subclasses:
AutoResizeColumnsCommand,MultiColumnHideCommand,MultiColumnResizeCommand
Abstract implementation for commands that should process multiple columns.
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedClone constructorprotectedAbstractMultiColumnCommand(ILayer layer, int... columnPositions) -
Method Summary
Modifier and TypeMethodDescriptionbooleanconvertToTargetLayer(ILayer targetLayer) Convert the row/column coordinates the command might be carrying from the source layer to the destination (target) layer.int[]protected final voidsetColumnPositions(ILayer layer, int... columnPositions) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.eclipse.nebula.widgets.nattable.command.ILayerCommand
cloneCommand
-
Field Details
-
columnPositionCoordinates
-
-
Constructor Details
-
AbstractMultiColumnCommand
- Parameters:
layer- TheILayerto which the positions match.columnPositions- The positions that should be processed by this command.
-
AbstractMultiColumnCommand
Clone constructor- Parameters:
command- The command to clone.
-
-
Method Details
-
getColumnPositions
- Returns:
- The unique column positions that should be processed by this command.
-
getColumnPositionsArray
public int[] getColumnPositionsArray()- Returns:
- The unique column positions that should be processed by this command.
- Since:
- 2.0
-
setColumnPositions
- Parameters:
layer- TheILayerto which the positions match.columnPositions- The positions that should be processed by this command.
-
convertToTargetLayer
Description copied from interface:ILayerCommandConvert 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:
convertToTargetLayerin interfaceILayerCommand- Parameters:
targetLayer- the target layer- Returns:
- true if the command is valid after conversion, false if the command is no longer valid.
-