Package org.gmetrics.source
Interface SourceCode
-
- All Known Implementing Classes:
AbstractSourceCode,SourceFile,SourceString
public interface SourceCode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.codehaus.groovy.ast.ModuleNodegetAst()intgetLineNumberForCharacterIndex(int charIndex)ListgetLines()StringgetName()StringgetPath()StringgetText()booleanisValid()Stringline(int lineNumber)
-
-
-
Method Detail
-
getName
String getName()
-
getPath
String getPath()
-
getText
String getText()
-
getLines
List getLines()
-
line
String line(int lineNumber)
-
getAst
org.codehaus.groovy.ast.ModuleNode getAst()
-
isValid
boolean isValid()
-
getLineNumberForCharacterIndex
int getLineNumberForCharacterIndex(int charIndex)
-
-