Class SelectRowsCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.command.AbstractMultiRowCommand
org.eclipse.nebula.widgets.nattable.selection.command.SelectRowsCommand
- All Implemented Interfaces:
ILayerCommand
-
Constructor Summary
ConstructorsModifierConstructorDescriptionSelectRowsCommand(ILayer layer, int columnPosition, int[] rowPositions, boolean withShiftMask, boolean withControlMask, int rowPositionToMoveIntoViewport) SelectRowsCommand(ILayer layer, int columnPosition, int rowPosition, boolean withShiftMask, boolean withControlMask) protectedSelectRowsCommand(SelectRowsCommand command) -
Method Summary
Modifier and TypeMethodDescriptionSame semantics asObject.clone()Used to make a copies of the command if has to passed to different layer stacks.booleanconvertToTargetLayer(ILayer targetLayer) Convert the row/column coordinates the command might be carrying from the source layer to the destination (target) layer.intintbooleanbooleanMethods inherited from class org.eclipse.nebula.widgets.nattable.command.AbstractMultiRowCommand
getRowPositions, getRowPositionsArray, setRowPositions
-
Constructor Details
-
SelectRowsCommand
public SelectRowsCommand(ILayer layer, int columnPosition, int rowPosition, boolean withShiftMask, boolean withControlMask) -
SelectRowsCommand
public SelectRowsCommand(ILayer layer, int columnPosition, int[] rowPositions, boolean withShiftMask, boolean withControlMask, int rowPositionToMoveIntoViewport) -
SelectRowsCommand
-
-
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- Overrides:
convertToTargetLayerin classAbstractMultiRowCommand- Parameters:
targetLayer- the target layer- Returns:
- true if the command is valid after conversion, false if the command is no longer valid.
-
getColumnPosition
public int getColumnPosition() -
isWithShiftMask
public boolean isWithShiftMask() -
isWithControlMask
public boolean isWithControlMask() -
getRowPositionToMoveIntoViewport
public int getRowPositionToMoveIntoViewport() -
cloneCommand
Description copied from interface:ILayerCommandSame semantics asObject.clone()Used to make a copies of the command if has to passed to different layer stacks.- Returns:
- a cloned instance of the command
- See Also:
-