Lines Matching refs:ontology

29      * imported ones. An ontology <code>ont</code> is considered to be imported if there

30 * was no explicit function call to load the ontology, i.e load(ont) or read(ont.getURI(),
40 * Return the loaded ontology associated with this URI. Return null if there is not ontology
43 * @param uri URI of the ontology
49 * Return the base ontology of this KB. At the creation time of each KB an empty ontology is
51 * RDF model (addProperty, setProperty, etc.) will actually add the data to this base ontology.
56 * Create an empty ontology which is automatically loaded to the KB.
58 * @return An empty ontology
65 * Create an empty ontology with the given logical URI (xml:base). Ontology is automatically
69 * @return An empty ontology
74 * Create an empty ontology with the given logical URI (xml:base) and physical URI. Ontology
79 * @return An empty ontology
84 * Create an empty ontology with the given logical URI (xml:base), physical URI and an
91 * @return The loaded ontology
99 public OWLOntology loadOntology(OWLOntology ontology);
102 * Load the ontology to the KB. If the ontology is created using another KB a copy will be
107 * @param ontology
108 * @return The loaded ontology
110 public OWLOntology load(OWLOntology ontology);
113 * Load the ontology to the KB. If the ontology is created using another KB a copy will be
118 * @param ontology
120 * @return The loaded ontology
122 public OWLOntology load(OWLOntology ontology, boolean withImports);
125 * Unload the ontology from the KB. The imports of the ontology will automatically be unloaded
127 * using the loadOntology will not be unloaded. This function does nothing if the ontology is
130 * @param ontology
132 public void unload(OWLOntology ontology);
135 * Unload the ontology with the given URI from the KB. The imports of the ontology will
158 * Read the ontology from the given URI, load it to this KB and return a reference to the
159 * ontology object created. Note that ontologies imported by the given ontology are also
167 * @return The loaded ontology
174 * Read the ontology from the given URI, load it to this KB and return a reference to the
175 * ontology object created. Note that ontologies imported by the given ontology are also
181 * @return The loaded ontology
187 * Read the ontology using the given Reader and the base URI, load it to this KB and return
188 * a reference to the ontology object created. Note that ontologies imported by the given
189 * ontology are also loaded to the KB.
193 * @return The loaded ontology
198 * Read the ontology using the given InputStream and the base URI, load it to this KB and return
199 * a reference to the ontology object created. Note that ontologies imported by the given
200 * ontology are also loaded to the KB.
204 * @return The loaded ontology
214 * Returns true if the KB checks consistency automatically after each ontology is loaded and
215 * rejects to load the ontology if it causes inconsistency.
220 * Set/clear the behavior to check consistency automatically after each ontology is loaded.
221 * When AutoConsistency is turned on an ontology that causes inconsistency will not be loaded.