Class AbstractMatrixCell.UnknownCell
- java.lang.Object
-
- com.nomagic.magicdraw.dependencymatrix.datamodel.cell.AbstractMatrixCell
-
- com.nomagic.magicdraw.dependencymatrix.datamodel.cell.AbstractMatrixCell.UnknownCell
-
- Enclosing class:
- AbstractMatrixCell
private static class AbstractMatrixCell.UnknownCell extends AbstractMatrixCell
Static cell which editable state is unknown and needs to be updated
-
-
Field Summary
-
Fields inherited from class com.nomagic.magicdraw.dependencymatrix.datamodel.cell.AbstractMatrixCell
EMPTY_EDITABLE_CELL, EMPTY_READONLY_CELL, UNKNOWN_CELL
-
-
Constructor Summary
Constructors Modifier Constructor Description private
UnknownCell()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<DependencyEntry>
getDependencies()
Deprecated.Dependency entry listMatrixCellView
getView()
Deprecated.Creates or returns already created matrix view objectboolean
isUnknownEditableState()
This means that this cell editable state is unknown, and needs to be updatedvoid
setDependencies(java.util.Collection<DependencyEntry> arg0)
Deprecated.Set new collection with cell dependency list-
Methods inherited from class com.nomagic.magicdraw.dependencymatrix.datamodel.cell.AbstractMatrixCell
getDescription, getStaticCell, isEditable, isStaticCell, isUnknownStaticCell
-
-
-
-
Method Detail
-
isUnknownEditableState
public boolean isUnknownEditableState()
Description copied from class:AbstractMatrixCell
This means that this cell editable state is unknown, and needs to be updated- Returns:
- for abstract cell this is always true
-
getView
public MatrixCellView getView()
Deprecated.Description copied from class:AbstractMatrixCell
Creates or returns already created matrix view object- Overrides:
getView
in classAbstractMatrixCell
- Returns:
- matrix cell view object
-
setDependencies
public void setDependencies(java.util.Collection<DependencyEntry> arg0)
Deprecated.Description copied from class:AbstractMatrixCell
Set new collection with cell dependency list- Specified by:
setDependencies
in classAbstractMatrixCell
- Parameters:
arg0
- new dependency list for the cell
-
getDependencies
@Nonnull public java.util.Collection<DependencyEntry> getDependencies()
Deprecated.Description copied from class:AbstractMatrixCell
Dependency entry list- Specified by:
getDependencies
in classAbstractMatrixCell
- Returns:
- dependency entries or empty list if not exits
-
-