Class RowReorderStartCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.reorder.command.RowReorderStartCommand
- All Implemented Interfaces:
ILayerCommand
Command to start row reordering. Will transport the position of the row that
will be reordered via dragging.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionRowReorderStartCommand(ILayer layer, int fromRowPosition) protectedConstructor used for cloning purposes -
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.int
-
Constructor Details
-
RowReorderStartCommand
- Parameters:
layer- The layer the position is related tofromRowPosition- The position of the row that should be reordered
-
RowReorderStartCommand
Constructor used for cloning purposes- Parameters:
command- The command which is base for the new one
-
-
Method Details
-
getFromRowPosition
public int getFromRowPosition()- Returns:
- The position of the row that should be reordered
-
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:
-