public final class BatchCompiler extends Object
BatchCompiler.compile("C:\\mySources\\X.java -d C:\\myOutput", new PrintWriter(System.out), new PrintWriter(System.err), null);
Modifier and Type | Method and Description |
---|---|
static boolean |
compile(String[] commandLineArguments,
PrintWriter outWriter,
PrintWriter errWriter,
CompilationProgress progress)
Invokes the Eclipse Compiler for Java with the given command line arguments, using the given writers
to print messages, and reporting progress to the given compilation progress.
|
static boolean |
compile(String commandLine,
PrintWriter outWriter,
PrintWriter errWriter,
CompilationProgress progress)
Invokes the Eclipse Compiler for Java with the given command line arguments, using the given writers
to print messages, and reporting progress to the given compilation progress.
|
public static boolean compile(String commandLine, PrintWriter outWriter, PrintWriter errWriter, CompilationProgress progress)
Reasons for a compilation failing to complete successfully include:
The specification of the command line arguments is defined by running the batch compiler's help
BatchCompiler.compile("-help", new PrintWriter(System.out), new PrintWriter(System.err), null);
commandLine
- the command line arguments passed to the compileroutWriter
- the writer used to print standard messageserrWriter
- the writer used to print error messagesprogress
- the object to report progress to and to provide cancellation, or null
if no progress is neededpublic static boolean compile(String[] commandLineArguments, PrintWriter outWriter, PrintWriter errWriter, CompilationProgress progress)
Reasons for a compilation failing to complete successfully include:
The specification of the command line arguments is defined by running the batch compiler's help
BatchCompiler.compile("-help", new PrintWriter(System.out), new PrintWriter(System.err), null);Note that a
true
returned value indicates that no errors were reported, no runtime exceptions
occurred and that the compilation was not canceled.commandLineArguments
- the command line arguments passed to the compileroutWriter
- the writer used to print standard messageserrWriter
- the writer used to print error messagesprogress
- the object to report progress to and to provide cancellation, or null
if no progress is needed
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.