mirror of https://github.com/sbt/sbt.git
14 lines
481 B
Java
14 lines
481 B
Java
package xsbti.compile;
|
|
|
|
import xsbti.AnalysisCallback;
|
|
import xsbti.Logger;
|
|
import xsbti.Reporter;
|
|
import java.io.File;
|
|
|
|
public interface CachedCompiler
|
|
{
|
|
/** Returns an array of arguments representing the nearest command line equivalent of a call to run but without the command name itself.*/
|
|
String[] commandArguments(File[] sources);
|
|
void run(File[] sources, DependencyChanges cpChanges, AnalysisCallback callback, Logger log, Reporter delegate, CompileProgress progress);
|
|
}
|