Class RowSpanningCopyDataCommandHandler
java.lang.Object
org.eclipse.nebula.widgets.nattable.command.AbstractLayerCommandHandler<CopyDataToClipboardCommand>
org.eclipse.nebula.widgets.nattable.copy.command.CopyDataCommandHandler
org.eclipse.nebula.widgets.nattable.copy.command.RowSpanningCopyDataCommandHandler
- All Implemented Interfaces:
ILayerCommandHandler<CopyDataToClipboardCommand>
- Direct Known Subclasses:
HierarchicalTreeCopyDataCommandHandler
Handler class for copying selected data within the
SelectionLayer to
the clipboard. Will treat cells with row spanning as a single cell and will
not create gaps for rows with no cell to copy.- Since:
- 1.6
-
Field Summary
FieldsFields inherited from class org.eclipse.nebula.widgets.nattable.copy.command.CopyDataCommandHandler
selectionLayer -
Constructor Summary
ConstructorsConstructorDescriptionRowSpanningCopyDataCommandHandler(SelectionLayer selectionLayer, InternalCellClipboard clipboard) Creates an instance that only checks theSelectionLayerfor data to add to the clipboard.RowSpanningCopyDataCommandHandler(SelectionLayer selectionLayer, ILayer columnHeaderLayer, InternalCellClipboard clipboard) Creates an instance that checks theSelectionLayerand the column header layer if given for data to add to the clipboard. -
Method Summary
Modifier and TypeMethodDescriptionprotected ILayerCell[]assembleBody(int currentRowPosition) Collects and assembles the selected data per row position that should be copied to the clipboard.protected voidinternalDoCommand(CopyDataToClipboardCommand command, ILayerCell[][] assembledCopiedDataStructure) Internal implementation of the command handling that additionally takes the assembled data structure to copy as parameter to avoid multiple assemble operations.protected voidPerform actions after copying values to the internal clipboard.protected voidPerform actions prior copying values to the internal clipboard.Methods inherited from class org.eclipse.nebula.widgets.nattable.copy.command.CopyDataCommandHandler
assembleColumnHeaders, assembleCopiedDataStructure, doCommand, getColumnHeaderLayer, getCommandClass, getCopyLayer, getRowHeaderLayer, getSelectedColumnPositions, isCopyAllowed, isEmpty, setCopyFormattedText, setCopyLayerMethods inherited from class org.eclipse.nebula.widgets.nattable.command.AbstractLayerCommandHandler
doCommand
-
Field Details
-
clipboard
-
-
Constructor Details
-
RowSpanningCopyDataCommandHandler
public RowSpanningCopyDataCommandHandler(SelectionLayer selectionLayer, InternalCellClipboard clipboard) Creates an instance that only checks theSelectionLayerfor data to add to the clipboard.- Parameters:
selectionLayer- TheSelectionLayerwithin the NatTable. Can not benull.clipboard- TheInternalCellClipboardthat should be used for copy/paste operations within a NatTable instance.
-
RowSpanningCopyDataCommandHandler
public RowSpanningCopyDataCommandHandler(SelectionLayer selectionLayer, ILayer columnHeaderLayer, InternalCellClipboard clipboard) Creates an instance that checks theSelectionLayerand the column header layer if given for data to add to the clipboard.- Parameters:
selectionLayer- TheSelectionLayerwithin the NatTable. Can not benull.columnHeaderLayer- The column header layer within the NatTable grid. Can benull.clipboard- TheInternalCellClipboardthat should be used for copy/paste operations within a NatTable instance.
-
-
Method Details
-
internalDoCommand
protected void internalDoCommand(CopyDataToClipboardCommand command, ILayerCell[][] assembledCopiedDataStructure) Description copied from class:CopyDataCommandHandlerInternal implementation of the command handling that additionally takes the assembled data structure to copy as parameter to avoid multiple assemble operations.- Overrides:
internalDoCommandin classCopyDataCommandHandler- Parameters:
command- TheCopyDataToClipboardCommandto handle.assembledCopiedDataStructure- The assembled data structure to copy.
-
assembleBody
Collects and assembles the selected data per row position that should be copied to the clipboard. For cells with row spanning only the origin cell will be tracked.- Overrides:
assembleBodyin classCopyDataCommandHandler- Parameters:
currentRowPosition- The row position of which the selected cells should be collected.- Returns:
- An array containing the selected cells that should be copied to the clipboard.
-
preInternalCopy
protected void preInternalCopy()Perform actions prior copying values to the internal clipboard. E.g. disabling formula evaluation. -
postInternalCopy
protected void postInternalCopy()Perform actions after copying values to the internal clipboard. E.g. enabling formula evaluation.
-