Package edu.stanford.smi.protegex.owl.repository.impl

Examples of edu.stanford.smi.protegex.owl.repository.impl.LocalFolderRepository


    protected void importClamlCM(OWLModel owlModel) throws OntologyLoadException {
        owlModel.getNamespaceManager().setDefaultNamespace("http://who.int/icd#");
        URI uri = getClamlDir();
        if (uri != null) {
            LocalFolderRepository rep = new LocalFolderRepository(new File(uri));
            owlModel.getRepositoryManager().addProjectRepository(rep);
        }

        ImportHelper ih = new ImportHelper(owlModel);
        ih.addImport(CLAML_CM_ONTOLOGY_NAME);
View Full Code Here

TOP

Related Classes of edu.stanford.smi.protegex.owl.repository.impl.LocalFolderRepository

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.