Package org.semanticweb.owlapi.model

Examples of org.semanticweb.owlapi.model.OWLIndividual.toStringID()


        Vector<IRI> recipe = new Vector();
        OWLClass recipeclas = factory.getOWLClass(IRI.create(owlIDrmi + "Recipe"));
        Iterator<OWLIndividual> indaxiom = recipeclas.getIndividuals(owlmodel).iterator();
        while(indaxiom.hasNext()){
            OWLIndividual axind = indaxiom.next();
                recipe.add(IRI.create(axind.toStringID()));
        }

        return(recipe);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.