Class Main
- java.lang.Object
-
- com.sun.tools.javac.Main
public class Main extends Object
A legacy programmatic interface for the Java Programming Language compiler, javac. See the jdk.compiler
module for details on replacement APIs.
Constructors
Constructor | Description |
---|---|
Main() |
Methods
Modifier and Type | Method | Description |
---|---|---|
static int | compile(String[] args) | Programmatic interface to the Java Programming Language compiler, javac. |
static int | compile(String[] args,
PrintWriter out) | Programmatic interface to the Java Programming Language compiler, javac. |
static void | main(String[] args) | Main entry point for the launcher. |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructors
Main
public Main()
Methods
main
public static void main(String[] args) throws Exception
Main entry point for the launcher. Note: This method calls System.exit.
- Parameters:
-
args
- command line arguments - Throws:
Exception
compile
public static int compile(String[] args)
Programmatic interface to the Java Programming Language compiler, javac.
- Parameters:
-
args
- The command line arguments that would normally be passed to the javac program as described in the man page. - Returns:
- an integer equivalent to the exit value from invoking javac, see the man page for details.
compile
public static int compile(String[] args, PrintWriter out)
Programmatic interface to the Java Programming Language compiler, javac.
- Parameters:
-
args
- The command line arguments that would normally be passed to the javac program as described in the man page. -
out
- PrintWriter to which the compiler's diagnostic output is directed. - Returns:
- an integer equivalent to the exit value from invoking javac, see the man page for details.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.compiler/com/sun/tools/javac/Main.html