Lines Matching defs:rmic

33 package sun.rmi.rmic;
62 * Main "rmic" program.
68 public class Main implements sun.rmi.rmic.Constants {
135 error("rmic.usage", program);
144 * Handle internal option to use the new (and incomplete) rmic
151 return (new sun.rmi.rmic.newrmic.Main(out,
201 error("rmic.cant.read", e.getMessage());
246 error("rmic.option.unsupported", "-show");
252 error("rmic.option.already.seen", "-classpath");
260 error("rmic.option.requires.argument", "-classpath");
267 error("rmic.option.already.seen", "-sourcepath");
275 error("rmic.option.requires.argument", "-sourcepath");
282 error("rmic.option.already.seen", "-bootclasspath");
290 error("rmic.option.requires.argument", "-bootclasspath");
297 error("rmic.option.already.seen", "-extdirs");
305 error("rmic.option.requires.argument", "-extdirs");
312 error("rmic.option.already.seen", "-d");
320 error("rmic.no.such.directory", destDir.getPath());
325 error("rmic.option.requires.argument", "-d");
345 error("rmic.no.such.option", argv[i]);
400 error("rmic.missing.property",arg);
407 error("rmic.cannot.instantiate",className);
438 error("rmic.cannot.use.both",environmentClass.getName(),envClass.getName());
443 error("rmic.class.not.found",env);
469 error("rmic.resource.not.found",name);
505 error("rmic.cannot.instantiate",environmentClass.getName());
526 String noMemoryErrorString = getText("rmic.no.memory");
527 String stackOverflowErrorString = getText("rmic.stack.overflow");
567 env.error(0, "rmic.class.not.found", implClassName);
609 msg = getText("rmic.errors", env.nerrors);
611 msg = getText("rmic.1error");
615 msg += ", " + getText("rmic.warnings", env.nwarnings);
617 msg += ", " + getText("rmic.1warning");
625 output(getText("rmic.warnings", env.nwarnings));
627 output(getText("rmic.1warning"));
640 output(getText("rmic.done_in", Long.toString(tm)));
644 // Note that while this is unneccessary when rmic is invoked
645 // the command line, there are environments in which rmic
790 output(getText("rmic.wrote", file.getPath()));
804 Main compiler = new Main(System.out, "rmic");
809 * Return the string value of a named resource in the rmic.properties
840 ResourceBundle.getBundle("sun.rmi.rmic.resources.rmic");
844 ResourceBundle.getBundle("sun.rmi.rmic.resources.rmicext");