Interface DependencyMatrixSelection
@OpenApiAll
public interface DependencyMatrixSelection
Provides information about dependency matrix row, column, cell selection.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceDescribes cell. -
Method Summary
Modifier and TypeMethodDescriptionReturns collection of {DependencyMatrixSelection.CellDescriptor} of selected cells.Returns collection of {ElementNode} of all selected columns.Returns collection of {ElementNode} of all selected rows.booleanisCellSelected(ElementNode row, ElementNode column) Returns true if cell between given row and given column is selected.booleanReturns true if only multiple cells are selected.booleanReturns true if only single cell is selected.
-
Method Details
-
isCellSelected
Returns true if cell between given row and given column is selected. -
getSelectedRows
Collection<ElementNode> getSelectedRows()Returns collection of {ElementNode} of all selected rows. -
getSelectedColumns
Collection<ElementNode> getSelectedColumns()Returns collection of {ElementNode} of all selected columns. -
getSelectedCells
Collection<DependencyMatrixSelection.CellDescriptor> getSelectedCells()Returns collection of {DependencyMatrixSelection.CellDescriptor} of selected cells. -
isMultipleCellsSelected
boolean isMultipleCellsSelected()Returns true if only multiple cells are selected. -
isSingleCellSelected
boolean isSingleCellSelected()Returns true if only single cell is selected.
-