Package com.nomagic.magicdraw.dependency
Interface DependencyCheckResult
@OpenApiAll
public interface DependencyCheckResult
Interface for getting dependency checking information.
- Version:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns dependencies between modules and a project.boolean
Returns indication whether the dependency check has found cyclic dependencies.boolean
Returns indication whether the dependency check has found dependencies.
-
Method Details
-
getDependencies
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.
-