Package com.nomagic.magicdraw.dependency
Interface ElementLocationDependency
-
@OpenApiAll public interface ElementLocationDependencyRepresents a dependency between locations of elements.- Version:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ElementLocationgetDependsOnLocation()Returns an element location on which depends.ElementLocationgetElementLocation()Returns an element location that depends.booleanisPartOfCyclicDependency()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.
-
-