Searched defs:createOntology (Results 1 - 6 of 6) sorted by relevance

/owl-s/src/org/mindswap/owls/
H A DOWLSFactory.java99 * @deprecated Use OWLFactory.createOntology() instead
101 public static OWLSOntology createOntology() { method in class:OWLSFactory
102 return (OWLSOntology) OWLFactory.createOntology();
106 * @deprecated Use OWLFactory.createOntology(URI) instead
108 public static OWLSOntology createOntology(URI uri) { method in class:OWLSFactory
109 return (OWLSOntology) OWLFactory.createOntology(uri);
/owl-s/src/impl/jena/
H A DJenaOWLFactory.java78 public OWLOntology createOntology() { method in class:JenaOWLFactory
79 return getKB().createOntology();
82 public OWLOntology createOntology(URI uri) { method in class:JenaOWLFactory
83 return getKB().createOntology(uri);
H A DOWLKnowledgeBaseImpl.java117 public OWLOntology createOntology(boolean load) { method in class:OWLKnowledgeBaseImpl
119 return createOntology();
124 public OWLOntology createOntology() { method in class:OWLKnowledgeBaseImpl
125 return createOntology(null, null, ModelFactory.createDefaultModel());
128 public OWLOntology createOntology(URI uri) { method in class:OWLKnowledgeBaseImpl
129 return createOntology(uri, null, ModelFactory.createDefaultModel());
132 public OWLOntology createOntology(URI uri, URI fileURI) { method in class:OWLKnowledgeBaseImpl
133 return createOntology(uri, fileURI, ModelFactory.createDefaultModel());
136 public OWLOntology createOntology(URI uri, URI fileURI, Object implementation) { method in class:OWLKnowledgeBaseImpl
572 * @deprecated Use createOntology() instea
[all...]
/owl-s/src/org/mindswap/owl/
H A DOWLFactory.java54 public OWLOntology createOntology(); method in interface:OWLFactory.Interface
56 public OWLOntology createOntology(URI uri); method in interface:OWLFactory.Interface
93 public static OWLOntology createOntology() { method in class:OWLFactory
94 return createOntology(false);
97 public static OWLOntology createOntology(URI uri) { method in class:OWLFactory
98 return createOntology(uri, false);
109 public static OWLOntology createOntology( boolean importOWLS ) { method in class:OWLFactory
110 OWLOntology ont = factory.createOntology();
124 public static OWLOntology createOntology( URI uri, boolean importOWLS ) { method in class:OWLFactory
125 OWLOntology ont = factory.createOntology(ur
[all...]
H A DOWLKnowledgeBase.java60 public OWLOntology createOntology(); method in interface:OWLKnowledgeBase
62 public OWLOntology createOntology(boolean load); method in interface:OWLKnowledgeBase
71 public OWLOntology createOntology(URI uri); method in interface:OWLKnowledgeBase
81 public OWLOntology createOntology(URI uri, URI fileURI); method in interface:OWLKnowledgeBase
93 public OWLOntology createOntology(URI uri, URI fileURI, Object implementation); method in interface:OWLKnowledgeBase
232 * @deprecated Use createOntology() instead
237 * @deprecated Use createOntology(URI) instead
/owl-s/lib/jena/
H A Djena.jarcom/ com/hp/ com/hp/hpl/ com/hp/hpl/jena/ com/hp/hpl/jena/datatypes/ com/hp/hpl/jena/ ...

Completed in 126 milliseconds