Package com.nomagic.magicdraw.dependency
Interface ElementLocationDependency
-
@OpenApiAll public interface ElementLocationDependency
Represents a dependency between locations of elements.- Version:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ElementLocation
getDependsOnLocation()
Returns an element location on which depends.ElementLocation
getElementLocation()
Returns an element location that depends.boolean
isPartOfCyclicDependency()
Returns whether the dependency is a part of cyclic dependency.
-
-
-
Method Detail
-
getElementLocation
ElementLocation getElementLocation()
Returns an element location that depends.- Returns:
- element location.
-
getDependsOnLocation
ElementLocation getDependsOnLocation()
Returns an element location on which depends.- Returns:
- location on that depends.
-
isPartOfCyclicDependency
boolean isPartOfCyclicDependency()
Returns whether the dependency is a part of cyclic dependency.- Returns:
- true if the dependency is a part of cyclic dependency, otherwise - false.
-
-