Interface IDirectoryAccess
-
- All Superinterfaces:
IElementAccess,INamedElementAccess
- All Known Implementing Classes:
CppIncludeDirectoryAccess,CppRootDirectoryPathAccess,CppWeakRootDirectoryAccess,DirectoryAccess,DirectoryFragmentAccess
public interface IDirectoryAccess extends INamedElementAccess
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceIDirectoryAccess.IVisitor-
Nested classes/interfaces inherited from interface com.hello2morrow.sonargraph.api.model.INamedElementAccess
INamedElementAccess.INamedElementAccessVisitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAbsolutePath()de.schlichtherle.truezip.file.TFilegetFile()booleanisRootDirectory()booleanisSourceRootDirectory()-
Methods inherited from interface com.hello2morrow.sonargraph.api.model.IElementAccess
getName, getNameWithSignature, getShortName, getShortNameWithSignature, ignoreIssues, isExcluded, isExternal
-
Methods inherited from interface com.hello2morrow.sonargraph.api.model.INamedElementAccess
accept, getChildren, getFullyQualifiedName, getIncomingDependenciesRecursively, getIncomingDependenciesRecursively, getIssueCount, getIssueCount, getOutgoingDependenciesRecursively, getOutgoingDependenciesRecursively, getOutgoingDependenciesRecursively, getParent, getParent, getReferencedElementsRecursively, getReferencedElementsRecursively, getReferencedElementsRecursively, getReferencingElementsRecursively, getReferencingElementsRecursively
-
-
-
-
Method Detail
-
getFile
de.schlichtherle.truezip.file.TFile getFile()
-
getAbsolutePath
java.lang.String getAbsolutePath()
-
isRootDirectory
boolean isRootDirectory()
- Returns:
- true if this is a root directory containing input files for the parsers (e.g. a configured top-level directory in a module)
-
isSourceRootDirectory
boolean isSourceRootDirectory()
- Returns:
- true if this is a root directory that is searched for input source files when parsing
-
-