| Compile.java |
package rmi.rmiSynth;
public class Compile {
static public void rmic() {
String
fn = "rmiimage.Server";
rmic(fn);
}
static public void rmic(String fn) {
String args[] = {fn};
// If you uncomment the following
// it will not compile under jdk 1.2
//sun.rmi.rmic.Main.main(args);
}
}