Interface DependencyMatrixSelection
- 
@OpenApiAll public interface DependencyMatrixSelectionProvides information about dependency matrix row, column, cell selection. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceDependencyMatrixSelection.CellDescriptorDescribes cell. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<DependencyMatrixSelection.CellDescriptor>getSelectedCells()Returns collection of {DependencyMatrixSelection.CellDescriptor} of selected cells.java.util.Collection<ElementNode>getSelectedColumns()Returns collection of {ElementNode} of all selected columns.java.util.Collection<ElementNode>getSelectedRows()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.booleanisMultipleCellsSelected()Returns true if only multiple cells are selected.booleanisSingleCellSelected()Returns true if only single cell is selected. 
 - 
 
- 
- 
Method Detail
- 
isCellSelected
boolean isCellSelected(ElementNode row, ElementNode column)
Returns true if cell between given row and given column is selected. 
- 
getSelectedRows
java.util.Collection<ElementNode> getSelectedRows()
Returns collection of {ElementNode} of all selected rows. 
- 
getSelectedColumns
java.util.Collection<ElementNode> getSelectedColumns()
Returns collection of {ElementNode} of all selected columns. 
- 
getSelectedCells
java.util.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. 
 - 
 
 -