*/
public static void main(String[] args) {
File file = new File("/tmp/icd10_claml.xml");
//load into a file that has the empty content model in it
Project prj = Project.loadProjectFromFile("/tmp/icd_content_model_empty.pprj", new ArrayList());
OWLModel owlModel = (OWLModel) prj.getKnowledgeBase();
ClamlImport ci = new ClamlImport(owlModel);
ci.doImport(file);
log.info("Started saving of OWL file on " + new Date());
long t0 = System.currentTimeMillis();
prj.save(new ArrayList());
log.info("Finished saving OWL file in " + ((System.currentTimeMillis() - t0) / 1000) + " seconds");
}