Package com.hello2morrow.sonargraph.api
Interface IComponentAccess
-
public interface IComponentAccess
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFilterName()
Gets the filter name for this component (usually the identifying path of the component)INamedElementAccess
getRepresentingObject()
Returns the language specific component elementjava.util.List<ISourceFileAccess>
getSources()
Return the source files comprising this componentboolean
isExcluded()
Is this component excluded?boolean
isExternal()
-
-
-
Method Detail
-
getFilterName
java.lang.String getFilterName()
Gets the filter name for this component (usually the identifying path of the component)- Returns:
- The filter name
-
isExcluded
boolean isExcluded()
Is this component excluded?- Returns:
- true if excluded
-
getRepresentingObject
INamedElementAccess getRepresentingObject()
Returns the language specific component element- Returns:
- Component element
-
getSources
java.util.List<ISourceFileAccess> getSources()
Return the source files comprising this component- Returns:
- Source files
-
isExternal
boolean isExternal()
- Returns:
- true, if this component is external
-
-