Class AbstractRowCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.command.AbstractRowCommand
- All Implemented Interfaces:
ILayerCommand
- Direct Known Subclasses:
DisplayRowGroupRenameDialogCommand,FreezeRowCommand,InitializeAutoResizeRowsCommand,RowGroupExpandCollapseCommand,RowGroupReorderEndCommand,RowGroupReorderStartCommand,RowHideCommand,RowResizeCommand,RowShowCommand,SelectRowGroupsCommand,ViewportSelectRowCommand,ViewportSelectRowGroupCommand
ILayerCommand that is executed for a row position. Transports a
RowPositionCoordinate that is transformed while transported down the
layer stack.-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractRowCommand(AbstractRowCommand command) Clone constructor.protectedAbstractRowCommand(ILayer layer, int rowPosition) -
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.getLayer()inttoString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.nebula.widgets.nattable.command.ILayerCommand
cloneCommand
-
Constructor Details
-
AbstractRowCommand
- Parameters:
layer- TheILayerto which the column and row position correlate.rowPosition- The row position for which the command should be processed.
-
AbstractRowCommand
Clone constructor.- Parameters:
command- The command to clone.
-
-
Method Details
-
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.
-
getLayer
- Returns:
- The
ILayerto which the column and row position correlate. - Since:
- 1.6
-
getRowPosition
public int getRowPosition()- Returns:
- The row position for which the command should be processed.
-
toString
-