Export approximate command lines executed for 'doc', 'compile', and 'console'

This commit is contained in:
Mark Harrah 2013-02-28 17:59:38 -05:00
parent 829d6b7513
commit 283ebc0dcb
1 changed files with 2 additions and 0 deletions

View File

@ -7,5 +7,7 @@ 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.*/
public String[] commandArguments(File[] sources);
public void run(File[] sources, DependencyChanges cpChanges, AnalysisCallback callback, Logger log, Reporter delegate, CompileProgress progress);
}