~ubuntu-branches/ubuntu/precise/classpath/precise

« back to all changes in this revision

Viewing changes to tools/gnu/classpath/tools/rmi/RMIC.txt

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2006-05-27 16:11:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060527161115-h6e39eposdt5snb6
Tags: 2:0.91-3
* Install header files to /usr/include/classpath.
* debian/control: classpath: Conflict with jamvm < 1.4.3 and
  cacao < 0.96 (Closes: #368172).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
RMI stub and tie source code generator for java.rmi.*, javax.rmi.*
 
2
 
 
3
Copyright 2006 Free Software Foundation, Inc.
 
4
This is free software; see the source for copying conditions.  There is NO
 
5
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
6
 
 
7
Please report bugs at http://www.gnu.org/software/classpath/bugs.html
 
8
 
 
9
Usage: rmic <options> <class names>
 
10
 
 
11
 where <options> includes:
 
12
  -nowarn       Show no warnings
 
13
  -nowrite      Do not write any files (check for errors only)
 
14
  -d <folder>   Place generated files into the given folder
 
15
  
 
16
  -help         Print this help text
 
17
  -v            Print version
 
18
  -verbose      Verbose output
 
19
  -force        Try to generate code even if the input classes seem not
 
20
                consistent with RMI specification.
 
21
  
 
22
  -1.2          Generate v 1.2 stubs (default)*
 
23
  
 
24
  -iiop         Generate stubs and ties for the GIOP based RMI package extension,
 
25
                javax.rmi. With this key, the two additional keys are accepted:
 
26
    -poa           Generate the Servant based ties (default)
 
27
    -impl          Generate the obsoleted ObjectImpl based ties
 
28
                   (for backward compatibility)
 
29
    -help       Show more details on the giop stub and tie generator options.                
 
30
  -giop         Same as -iiop*                    
 
31
                
 
32
  
 
33
 and <class names> can include one or more non abstract classes that implement
 
34
 Remote and are accessible via current class path.
 
35
 
 
36
* This tool generates the source code that must be compiled with java compiler.
 
37
* The deprecated 1.1 version stubs are currently not supported (the v 1.2
 
38
  style stubs are always generated).
 
39
* -iiop is a standard key for this tool, but it is also a registered OMG mark
 
40
  when giop is not.
 
41