home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Java / espints / espinst.exe / MANPAGE < prev    next >
Encoding:
Text File  |  1996-02-28  |  1.5 KB  |  62 lines

  1. espresso(1)
  2.  
  3. NAME
  4.      espresso - a Java compiler.
  5.  
  6. SYNOPSIS
  7.      espresso [-verbose][-obfuscate][-classpath path] {[-out dir] file}
  8.  
  9. DESCRIPTION
  10.      espresso is used to compile Java programs to Java bytecodes.
  11.      
  12.          espresso file_1.java ... file_n.java 
  13.      
  14.      translates all of the files file_1.java ... file_n.java. The ".java"
  15.      suffix is recommended but not enforced. Each of the files 
  16.      file_1.java ... file_n.java contains the definition of one or more 
  17.      Java classes. There may be cyclic dependencies between classes defined
  18.      in different files. In this case all of the containing files have to be
  19.      compiled together. 
  20.  
  21.      espresso generates for each translated class X an output file X.class.
  22.      Normally, the output file will go in the same directory as the 
  23.      sourcefile that contains the definition of X, but this can be changed
  24.      with the -out option.
  25.  
  26. OPTIONS
  27.  
  28.          -verbose    
  29.  
  30.      Writes out information about loaded source and class files and
  31.      compilation times.
  32.  
  33.          -obfuscate
  34.  
  35.      Scrambles the names of all private methods and fields in the generated
  36.      .class file.
  37.  
  38.          -classpath path
  39.  
  40.      Prefixes `path' to the value of the CLASSPATH environment variable.
  41.  
  42.     -d dir
  43.  
  44.      Prefixes directory name `dir' to all output file names. This option 
  45.      stays in effect for all source files following it, unless overridden 
  46.      by a subsequent -d option.
  47.      
  48.     -g
  49.  
  50.      Generates local variable information for debuggers
  51.      
  52.  
  53.  
  54.      
  55.     
  56.      
  57.  
  58.  
  59.  
  60.  
  61.  
  62.