String[] cmds = new String[options.size()];
cmds = (String[])options.toArray(cmds);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
Main compiler = new Main(baos, "rmic");
boolean good = compiler.compile(cmds);
//good = true; // it ALWAYS returns an "error" if -Xnocompile is used!!
String output = baos.toString();
parseGeneratedFilenames(output);