Lines Matching refs:OWLOntology

28 import org.mindswap.owl.OWLOntology;

94 OWLOntology ontology = createOntologyWithoutLoading( uri, null, model);
113 public OWLOntology getOntology(URI uri) {
114 return (OWLOntology) uriMap.get(uri);
117 public OWLOntology createOntology(boolean load) {
124 public OWLOntology createOntology() {
128 public OWLOntology createOntology(URI uri) {
132 public OWLOntology createOntology(URI uri, URI fileURI) {
136 public OWLOntology createOntology(URI uri, URI fileURI, Object implementation) {
137 OWLOntology ont = createOntologyWithoutLoading(uri, fileURI, (Model) implementation);
142 protected OWLOntology createOntologyWithoutLoading(URI uri, URI fileURI, Model model) {
143 OWLOntology ont = new OWLOntologyImpl(this, uri, fileURI, model);
147 public OWLOntology loadOntology(OWLOntology ont) {
151 public OWLOntology load(OWLOntology ont) {
155 public OWLOntology load(OWLOntology ont, boolean withImports) {
156 OWLOntology loadedOnt = internalLoad( ont, withImports );
174 protected OWLOntology internalLoad(OWLOntology ont, boolean withImports) {
175 OWLOntology loadedOnt = ont;
179 return (OWLOntology) uriMap.get(uri);
204 OWLOntology imported = (OWLOntology) i.next();
205 OWLOntology loadedImport = internalLoad(imported, withImports);
224 OWLOntology ont = getOntology( uri );
232 public void unload( OWLOntology ontology ) {
255 OWLOntology importOnt = (OWLOntology) i.next();
268 public OWLOntology read(String uri) throws FileNotFoundException, URISyntaxException {
272 public OWLOntology read(URI uri) throws FileNotFoundException {
276 public OWLOntology read(Reader in, URI baseURI) {
280 public OWLOntology read(InputStream in, URI baseURI) {
292 protected OWLDataValue wrapDataValue(Literal l, OWLOntology ont) {
296 protected OWLIndividual wrapIndividual(Resource r, OWLOntology ont) {
301 ont = (OWLOntology) i.next();
309 protected OWLClass wrapClass(Resource r, OWLOntology ont) {
310 // OWLOntology ont = (OWLOntology) modelMap.get(r.getModel());
318 protected OWLObjectProperty wrapObjectProperty(Property p, OWLOntology ont) {
319 // OWLOntology ont = (OWLOntology) modelMap.get(p.getModel());
327 protected OWLDataProperty wrapDataProperty(Property p, OWLOntology ont) {
328 // OWLOntology ont = (OWLOntology) modelMap.get(p.getModel());
504 OWLOntology ont = read(uri);
510 OWLOntology ont = read(in, baseURI);
516 OWLOntology ont = read(in, baseURI);
594 OWLOntology ont = (OWLOntology) iter.next();
606 OWLOntology ont = (OWLOntology) iter.next();
618 OWLOntology ont = (OWLOntology) iter.next();
630 OWLOntology ont = (OWLOntology) iter.next();
642 OWLOntology ont = (OWLOntology) iter.next();
653 bindings.addAll( ((OWLOntology) iter.next()).getBindingsFor(parameter));