Class ColumnReorderEndCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.reorder.command.ColumnReorderEndCommand
- All Implemented Interfaces:
ILayerCommand
- Direct Known Subclasses:
ReorderColumnGroupEndCommand
Command to finish a column reorder operation. Typically triggered via drag
operations.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionColumnReorderEndCommand(ILayer layer, int toColumnPosition) protectedClone constructor. -
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.intbooleanvoidToggles the coordinate from left edge to right edge and vice versa.voidupdateToColumnPosition(int toPosition)
-
Constructor Details
-
ColumnReorderEndCommand
- Parameters:
layer- The layer to which the column positions match.toColumnPosition- The target column position to reorder to.
-
ColumnReorderEndCommand
Clone constructor.- Parameters:
command- The command to clone.
-
-
Method Details
-
getToColumnPosition
public int getToColumnPosition()- Returns:
- The column position to which the column should be reordered to.
-
updateToColumnPosition
public void updateToColumnPosition(int toPosition) - Parameters:
toPosition- The new toColumnPosition.- Since:
- 1.6
-
toggleCoordinateByEdge
public void toggleCoordinateByEdge()Toggles the coordinate from left edge to right edge and vice versa. Will not toggle if the coordinate is right edge of the last column or the left edge of the first column.- Since:
- 1.6
-
isReorderToLeftEdge
public boolean isReorderToLeftEdge()- Returns:
trueif the reorder operation should be done on the left edge of the toColumnPosition,falseif it should be reordered to the right edge.
-
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.
-
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.- Specified by:
cloneCommandin interfaceILayerCommand- Returns:
- a cloned instance of the command
- See Also:
-