Package com.nomagic.magicdraw.dependency
Interface DependencyCheckResult
-
@OpenApiAll public interface DependencyCheckResult
Interface for getting dependency checking information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<ElementLocationDependency>
getDependencies()
Returns dependencies between modules and a project.boolean
hasCyclicDependencies()
Returns indication whether the dependency check has found cyclic dependencies.boolean
hasDependencies()
Returns indication whether the dependency check has found dependencies.
-
-
-
Method Detail
-
getDependencies
java.util.Collection<ElementLocationDependency> getDependencies()
Returns dependencies between modules and a project.- Returns:
- dependencies.
-
hasCyclicDependencies
boolean hasCyclicDependencies()
Returns indication whether the dependency check has found cyclic dependencies.- Returns:
- true if cyclic dependencies exist.
-
hasDependencies
boolean hasDependencies()
Returns indication whether the dependency check has found dependencies.- Returns:
- true if dependencies exist, otherwise - false.
-
-