Interface IArchitectureModelAccess
-
- All Superinterfaces:
IElementAccess
,INamedElementAccess
public interface IArchitectureModelAccess extends INamedElementAccess
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.hello2morrow.sonargraph.api.INamedElementAccess
INamedElementAccess.INamedElementAccessVisitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getModelName()
Return the name of the architectural model.boolean
isLogical()
Test if the architecture model is a logical model.boolean
isPhysical()
Test if the architecture model is a physical model.-
Methods inherited from interface com.hello2morrow.sonargraph.api.IElementAccess
getName, getNameWithSignature, getShortName, getShortNameWithSignature, ignoreIssues, isExcluded, isExternal
-
Methods inherited from interface com.hello2morrow.sonargraph.api.INamedElementAccess
accept, getChildren, getFullyQualifiedName, getIncomingDependenciesRecursively, getIncomingDependenciesRecursively, getIssueCount, getIssueCount, getIssueCount, getIssueCount, getIssueCount, getIssues, getIssues, getIssues, getOutgoingDependenciesRecursively, getOutgoingDependenciesRecursively, getOutgoingDependenciesRecursively, getParent, getParent, getReferencedElementsRecursively, getReferencedElementsRecursively, getReferencedElementsRecursively, getReferencingElementsRecursively, getReferencingElementsRecursively
-
-
-
-
Method Detail
-
getModelName
java.lang.String getModelName()
Return the name of the architectural model.- Returns:
- name of model.
-
isLogical
boolean isLogical()
Test if the architecture model is a logical model.- Returns:
- true, if the model is logical, false if it is physical.
-
isPhysical
boolean isPhysical()
Test if the architecture model is a physical model.- Returns:
- true, if the model is physical, false if it is logical.
-
-