5253545556575859
/** * Generates all models from source repository in the current configuration. * @throws IOException if failed to process DMDL scripts */ public void process() throws IOException { JavaDataModelDriver driver = new CompositeDataModelDriver(conf.getServiceClassLoader()); process(driver); }
141142143144145146147148149150151
getClass().getClassLoader(), Locale.getDefault()); GenerateTask task = new GenerateTask(conf); try { task.process(new CompositeDataModelDriver(emitDrivers)); } catch (IOException e) { throw new AssertionError(e); } return emitter.getEmitted(); }