Class DeleteColumnOperation
java.lang.Object
ro.sync.ecss.extensions.commons.table.operations.AbstractTableOperation
ro.sync.ecss.extensions.commons.table.operations.DeleteColumnOperationBase
ro.sync.ecss.extensions.tei.table.DeleteColumnOperation
- All Implemented Interfaces:
AuthorOperation
,Extension
,TEIConstants
@API(type=INTERNAL,
src=PUBLIC)
public class DeleteColumnOperation
extends DeleteColumnOperationBase
implements TEIConstants
Operation used to delete a TEI table column.
-
Field Summary
Fields inherited from class ro.sync.ecss.extensions.commons.table.operations.DeleteColumnOperationBase
deletedColumnsIndices, tableElem
Fields inherited from class ro.sync.ecss.extensions.commons.table.operations.AbstractTableOperation
CHANGE_TRACKING_BEHAVIOR_ARGUMENT, TABLE_INFO_ARGUMENT_DESCRIPTOR, TABLE_INFO_ARGUMENT_NAME, tableHelper
Fields inherited from interface ro.sync.ecss.extensions.api.AuthorOperation
NAMESPACE_ARGUMENT, NAMESPACE_ARGUMENT_DESCRIPTOR, SCHEMA_AWARE_ARGUMENT, SCHEMA_AWARE_ARGUMENT_DESCRIPTOR
Fields inherited from interface ro.sync.ecss.extensions.tei.table.TEIConstants
ATTRIBUTE_NAME_COLS, ATTRIBUTE_NAME_ID, ATTRIBUTE_NAME_ROWS, ATTRIBUTE_NAME_XML_ID, ELEMENT_NAME_CELL, ELEMENT_NAME_ROW, ELEMENT_NAME_TABLE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
updateTableColSpan
(AuthorAccess authorAccess, AuthorTableCellSpanProvider spanProvider, AuthorElement cell, int colStartIndex, int colEndIndex) Update the column span for the table cell that is included into the deleted column.Methods inherited from class ro.sync.ecss.extensions.commons.table.operations.DeleteColumnOperationBase
canDeleteColumn, doOperationInternal, getArguments, getDescription, performDeleteColumn, updateAppliableColWidthsNumber, updateColspec
Methods inherited from class ro.sync.ecss.extensions.commons.table.operations.AbstractTableOperation
createEmptyCell, doOperation, findCellInsertionOffset, getElementAncestor, isElement, isTableElement
-
Constructor Details
-
DeleteColumnOperation
public DeleteColumnOperation()Constructor.
-
-
Method Details
-
updateTableColSpan
protected void updateTableColSpan(AuthorAccess authorAccess, AuthorTableCellSpanProvider spanProvider, AuthorElement cell, int colStartIndex, int colEndIndex) throws AuthorOperationException Description copied from class:DeleteColumnOperationBase
Update the column span for the table cell that is included into the deleted column.- Specified by:
updateTableColSpan
in classDeleteColumnOperationBase
- Parameters:
authorAccess
- The author access. Provides access to specific informations and actions for editor, document, workspace, tables, change tracking, utility a.s.o.spanProvider
- The table span provider. The object responsible for providing information about the cell spanning.cell
- The table cell.colStartIndex
- The new column start index, 1 based.colEndIndex
- The new column end index, 1 based.- Throws:
AuthorOperationException
- When the operation fails.- See Also:
-