org.protege.owl.codegeneration.WrappedIndividual Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-generation Show documentation
Show all versions of code-generation Show documentation
Generate Java code from an OWL ontology in the Protege Desktop editing environment.
The newest version!
package org.protege.owl.codegeneration;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLNamedIndividual;
import org.semanticweb.owlapi.model.OWLOntology;
/**
* @author z.khan
*
*/
public interface WrappedIndividual extends Comparable {
OWLOntology getOwlOntology();
OWLNamedIndividual getOwlIndividual();
void assertOwlType(OWLClassExpression type);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy