Class TickUpdateCommand
java.lang.Object
org.eclipse.nebula.widgets.nattable.tickupdate.command.TickUpdateCommand
- All Implemented Interfaces:
ILayerCommand
Command to trigger a tick update on the current selected cells. Note: This
command only works if the layer composition contains a SelectionLayer and the
corresponding
TickUpdateCommandHandler is registered.-
Constructor Summary
ConstructorsModifierConstructorDescriptionTickUpdateCommand(IConfigRegistry configRegistry, boolean increment) protectedTickUpdateCommand(TickUpdateCommand command) Constructor that is used by local cloning operation. -
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.boolean
-
Constructor Details
-
TickUpdateCommand
- Parameters:
configRegistry- TheIConfigRegistryof the current NatTable instance this command is executed in. Needed to determine several configurations on handling this command by its handler. As the command handler is not aware of the NatTable instance it is running in, and there is no kind of context, theIConfigRegistryneeds to be transported.increment- Flag to determine whether the current value in the data model should be incremented or decremented.
-
TickUpdateCommand
Constructor that is used by local cloning operation.- Parameters:
command- The command to create a new instance of.
-
-
Method Details
-
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:
-
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.
-
getConfigRegistry
- Returns:
- The
IConfigRegistryof the current NatTable instance this command is executed in. Needed to determine several configurations on handling this command by its handler. As the command handler is not aware of the NatTable instance it is running in, and there is no kind of context, theIConfigRegistryneeds to be transported.
-
isIncrement
public boolean isIncrement()- Returns:
- Whether the current value in the data model should be incremented or decremented.
-