home *** CD-ROM | disk | FTP | other *** search
- espresso(1)
-
- NAME
- espresso - a Java compiler.
-
- SYNOPSIS
- espresso [-verbose][-obfuscate][-classpath path] {[-out dir] file}
-
- DESCRIPTION
- espresso is used to compile Java programs to Java bytecodes.
-
- espresso file_1.java ... file_n.java
-
- translates all of the files file_1.java ... file_n.java. The ".java"
- suffix is recommended but not enforced. Each of the files
- file_1.java ... file_n.java contains the definition of one or more
- Java classes. There may be cyclic dependencies between classes defined
- in different files. In this case all of the containing files have to be
- compiled together.
-
- espresso generates for each translated class X an output file X.class.
- Normally, the output file will go in the same directory as the
- sourcefile that contains the definition of X, but this can be changed
- with the -out option.
-
- OPTIONS
-
- -verbose
-
- Writes out information about loaded source and class files and
- compilation times.
-
- -obfuscate
-
- Scrambles the names of all private methods and fields in the generated
- .class file.
-
- -classpath path
-
- Prefixes `path' to the value of the CLASSPATH environment variable.
-
- -d dir
-
- Prefixes directory name `dir' to all output file names. This option
- stays in effect for all source files following it, unless overridden
- by a subsequent -d option.
-
- -g
-
- Generates local variable information for debuggers
-
-
-
-
-
-
-
-
-
-
-
-