NonStop Server for Java 7.0 Tools Reference Pages

7 javac: Java Programming Language Compiler
The javac tool compiles Java source code into bytecode. For more information on javac tool, see
the Oracle Java documentation for javac.
Synopsis
javac [ options ] [ sourcefiles ] [ @argfiles ]
Arguments may be in any order.
options
Command line options.
sourcefiles
One or more source files to be compiled (such as MyClass.java).
@argfiles
One or more files that list options and source files. The -J options are not allowed in these files.
See Also:
“java: Java Application Launcher” (page 18)
“jdb: Java Debugger” (page 29)
“javah: C Header and Stub File Generator” (page 27)
“javap: Java Class File Disassembler” (page 28)
“javadoc: Java API Documentation Generator” (page 26)
“jar: Java Archive Tool” (page 16)
The Java Extensions Framework
Synopsis 25