Interface MatrixData
-
@OpenApiAll public interface MatrixDataInterface used to access dependency matrix data structure.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Collection<Element>getColumnElements()Returns only model elements without group elementsjava.util.Collection<Element>getRowElements()Returns only model elements without group elementsAbstractMatrixCellgetValue(ElementNode row, ElementNode column)Get Matrix Cell value from the modelAbstractMatrixCellgetValue(Element row, Element column)Deprecated.booleanisEmpty()If there is any data inside this dependency matrix
-
-
-
Method Detail
-
getRowElements
java.util.Collection<Element> getRowElements()
Returns only model elements without group elements- Returns:
- elements
-
getColumnElements
java.util.Collection<Element> getColumnElements()
Returns only model elements without group elements- Returns:
- elements
-
getValue
@Deprecated AbstractMatrixCell getValue(Element row, Element column)
Deprecated.
-
getValue
AbstractMatrixCell getValue(ElementNode row, ElementNode column)
Get Matrix Cell value from the model- Parameters:
row- row nodecolumn- column node- Returns:
- matrix data cell
-
isEmpty
boolean isEmpty()
If there is any data inside this dependency matrix- Returns:
trueif empty
-
-