Class ViewportSelectColumnGroupCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.command.AbstractColumnCommand
org.eclipse.nebula.widgets.nattable.group.command.ViewportSelectColumnGroupCommand
- All Implemented Interfaces:
ILayerCommand
Command to trigger the selection of all columns belonging to a column group.
- Since:
- 1.6
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedClone constructor.ViewportSelectColumnGroupCommand(ILayer layer, int columnPosition, int originColumnPosition, int columnSpan, boolean withShiftMask, boolean withControlMask) -
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.AbstractColumnCommand
getColumnPosition, getLayer, toString
-
Constructor Details
-
ViewportSelectColumnGroupCommand
public ViewportSelectColumnGroupCommand(ILayer layer, int columnPosition, int originColumnPosition, int columnSpan, boolean withShiftMask, boolean withControlMask) - Parameters:
layer- TheILayerfor the column position reference.columnPosition- The column position of the first column in a group according to the given layer.originColumnPosition- The origin column position which is the starting position of the column group that is selected.columnSpan- The spanning of the column group needed for region selection.withShiftMask-trueif the selection should be processed as if the shift modifier is active.withControlMask-trueif the selection should be processed as if the control modifier is active.
-
ViewportSelectColumnGroupCommand
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- Overrides:
convertToTargetLayerin classAbstractColumnCommand- Parameters:
targetLayer- the target layer- Returns:
- true if the command is valid after conversion, false if the command is no longer valid.
-
getOriginColumnPosition
public int getOriginColumnPosition()- Returns:
- The origin column position which is the starting position of the column group that is selected.
-
getColumnSpan
public int getColumnSpan()- Returns:
- The spanning of the column group needed for region selection.
-
isWithShiftMask
public boolean isWithShiftMask()- Returns:
- whether the shift modifier is active.
-
isWithControlMask
public boolean isWithControlMask()- Returns:
- whether the control modifier is active.
-
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:
-