Class AbstractPositionCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.command.AbstractPositionCommand
- All Implemented Interfaces:
ILayerCommand
- Direct Known Subclasses:
FreezePositionCommand,HoverStylingCommand,RowPositionHideCommand,SelectCellCommand,SelectColumnCommand,UpdateDataCommand
ILayerCommand that is executed for a cell position. Transports a
PositionCoordinate that is transformed while transported down the
layer stack.-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedClone constructor.protectedAbstractPositionCommand(ILayer layer, int columnPosition, 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.intgetLayer()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
-
AbstractPositionCommand
- Parameters:
layer- TheILayerto which the column and row position correlate.columnPosition- The column position for which the command should be processed.rowPosition- The row position for which the command should be processed.
-
AbstractPositionCommand
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
-
getColumnPosition
public int getColumnPosition()- Returns:
- The column position for which the command should be processed.
-
getRowPosition
public int getRowPosition()- Returns:
- The row position for which the command should be processed.
-
toString
-