org.codenarc.source.SourceCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CodeNarc Show documentation
Show all versions of CodeNarc Show documentation
The CodeNarc project provides a static analysis tool for Groovy code.
package org.codenarc.source;
import java.lang.*;
import java.io.*;
import java.net.*;
import java.util.*;
import groovy.lang.*;
import groovy.util.*;
public interface SourceCode
{
int DEFAULT_COMPILER_PHASE = new java.lang.Integer((int)0);
org.codenarc.analyzer.SuppressionAnalyzer getSuppressionAnalyzer();
java.lang.String getName();
java.lang.String getPath();
java.lang.String getText();
java.util.List getLines();
java.lang.String line(int lineNumber);
org.codehaus.groovy.ast.ModuleNode getAst();
int getAstCompilerPhase();
int getLineNumberForCharacterIndex(int charIndex);
boolean isValid();
java.util.Map> getMethodCallExpressions();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy