Class Main
- java.lang.Object
-
- com.sun.tools.javadoc.Main
@Deprecated(since="9", forRemoval=true) public class Main extends Object
javax.tools.ToolProvider::getSystemDocumentationTool
and javax.tools.DocumentationTool
for replacement functionality.Provides external entry points (tool and programmatic) for the javadoc program.
This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
- Since:
- 1.4
Methods
Modifier and Type | Method | Description |
---|---|---|
static int | execute(ClassLoader docletParentClassLoader,
String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static int | execute(String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static int | execute(String programName,
PrintWriter errWriter,
PrintWriter warnWriter,
PrintWriter noticeWriter,
String defaultDocletClassName,
ClassLoader docletParentClassLoader,
String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static int | execute(String programName,
PrintWriter errWriter,
PrintWriter warnWriter,
PrintWriter noticeWriter,
String defaultDocletClassName,
String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static int | execute(String programName,
ClassLoader docletParentClassLoader,
String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static int | execute(String programName,
String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static int | execute(String programName,
String defaultDocletClassName,
ClassLoader docletParentClassLoader,
String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static int | execute(String programName,
String defaultDocletClassName,
String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Programmatic interface. |
static void | main(String... args) | Deprecated, for removal: This API element is subject to removal in a future version. Command line interface. |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods
main
public static void main(String... args)
Command line interface.
- Parameters:
-
args
- The command line parameters.
execute
public static int execute(String... args)
Programmatic interface.
- Parameters:
-
args
- The command line parameters. - Returns:
- The return code.
execute
public static int execute(ClassLoader docletParentClassLoader, String... args)
Programmatic interface.
- Parameters:
-
args
- The command line parameters. -
docletParentClassLoader
- The parent class loader used when creating the doclet classloader. If null, the class loader used to instantiate doclets will be created without specifying a parent class loader. - Returns:
- The return code.
- Since:
- 1.7
execute
public static int execute(String programName, String... args)
Programmatic interface.
- Parameters:
-
programName
- Name of the program (for error messages). -
args
- The command line parameters. - Returns:
- The return code.
execute
public static int execute(String programName, ClassLoader docletParentClassLoader, String... args)
Programmatic interface.
- Parameters:
-
programName
- Name of the program (for error messages). -
args
- The command line parameters. -
docletParentClassLoader
- The parent class loader used when creating the doclet classloader. If null, the class loader used to instantiate doclets will be created without specifying a parent class loader. - Returns:
- The return code.
- Since:
- 1.7
execute
public static int execute(String programName, String defaultDocletClassName, String... args)
Programmatic interface.
- Parameters:
-
programName
- Name of the program (for error messages). -
defaultDocletClassName
- Fully qualified class name. -
args
- The command line parameters. - Returns:
- The return code.
execute
public static int execute(String programName, String defaultDocletClassName, ClassLoader docletParentClassLoader, String... args)
Programmatic interface.
- Parameters:
-
programName
- Name of the program (for error messages). -
defaultDocletClassName
- Fully qualified class name. -
docletParentClassLoader
- The parent class loader used when creating the doclet classloader. If null, the class loader used to instantiate doclets will be created without specifying a parent class loader. -
args
- The command line parameters. - Returns:
- The return code.
- Since:
- 1.7
execute
public static int execute(String programName, PrintWriter errWriter, PrintWriter warnWriter, PrintWriter noticeWriter, String defaultDocletClassName, String... args)
Programmatic interface.
- Parameters:
-
programName
- Name of the program (for error messages). -
errWriter
- PrintWriter to receive error messages. -
warnWriter
- PrintWriter to receive error messages. -
noticeWriter
- PrintWriter to receive error messages. -
defaultDocletClassName
- Fully qualified class name. -
args
- The command line parameters. - Returns:
- The return code.
execute
public static int execute(String programName, PrintWriter errWriter, PrintWriter warnWriter, PrintWriter noticeWriter, String defaultDocletClassName, ClassLoader docletParentClassLoader, String... args)
Programmatic interface.
- Parameters:
-
programName
- Name of the program (for error messages). -
errWriter
- PrintWriter to receive error messages. -
warnWriter
- PrintWriter to receive error messages. -
noticeWriter
- PrintWriter to receive error messages. -
defaultDocletClassName
- Fully qualified class name. -
docletParentClassLoader
- The parent class loader used when creating the doclet classloader. If null, the class loader used to instantiate doclets will be created without specifying a parent class loader. -
args
- The command line parameters. - Returns:
- The return code.
- Since:
- 1.7
© 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.javadoc/com/sun/tools/javadoc/Main.html