Interface DependencyMatrixSelection
@OpenApiAll
public interface DependencyMatrixSelection
Provides information about dependency matrix row, column, cell selection.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Describes 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.boolean
isCellSelected
(ElementNode row, ElementNode column) Returns true if cell between given row and given column is selected.boolean
Returns true if only multiple cells are selected.boolean
Returns 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.
-