/usr/java/bin/rmic [options] classesSolaris only. Remote Method Invocation compiler for Java. rmic takes the fully package-qualified class names and generates skeleton and stub class files to provide remote method invocation. The class must have previously been successfully compiled with java.
For a method WhizImpl in class whiz, rmic creates two files, WhizImpl_Skel.class and WhizImpl_Stub.class. The "skeleton" file implements the server side of the RMI; the "stub" file implements the client side.
-classpath pathUse path as the search path for class files, overriding $CLASSPATH. path is a colon-separated list of directories.
-d dirPlace the generated files in dir.
-dependRecompile missing or out-of-date class files referenced from other class files, not just from source code.
-gGenerate debugging tables with line numbers. With -O, also generate information about local variables.
-keepgeneratedKeep the generated .java source files for the skeletons and the stubs.
-nowarnDisable all warnings.
-OPerform optimizations that may produce faster but larger class files. It may also slow down compilation. This option should be used with discretion.
-showUse the GUI for the RMI compiler to enter class names.
-verbosePrint messages as files are compiled and loaded.