Author: alexdma
Date: Wed Jan 18 14:02:14 2012
New Revision: 1232885

URL: http://svn.apache.org/viewvc?rev=1232885&view=rev
Log:
STANBOL-461 : trying to fix nested list in Markdown... again

Modified:
    
incubator/stanbol/site/trunk/content/stanbol/docs/trunk/ontologymanager/ontonet.mdtext

Modified: 
incubator/stanbol/site/trunk/content/stanbol/docs/trunk/ontologymanager/ontonet.mdtext
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/site/trunk/content/stanbol/docs/trunk/ontologymanager/ontonet.mdtext?rev=1232885&r1=1232884&r2=1232885&view=diff
==============================================================================
--- 
incubator/stanbol/site/trunk/content/stanbol/docs/trunk/ontologymanager/ontonet.mdtext
 (original)
+++ 
incubator/stanbol/site/trunk/content/stanbol/docs/trunk/ontologymanager/ontonet.mdtext
 Wed Jan 18 14:02:14 2012
@@ -51,10 +51,7 @@ Note that when you add an ontology to a 
     * `RootOntologyIRISource`. Tries to locate and load an ontology, and its 
imports, from a given IRI. It can use a custom `OWLOntologyManager` as a store, 
and can even override any mappers, in order to force-dereference the IRI.
     * `ParentPathInputSource`. Tries to load an ontology from a root `File`, 
and will seek its imports among the files in the same directory as the root 
`File`. It also allows a custom `OWLOntologyManager` as a store.
 Loads the ontology source codeWraps an already existing `OWLOntology`, 
therefore it does not provide a physical IRI.
-    * `BlankOntologySource`. Creates an `OWLOntology` with no ID and no 
axioms. It can be useful for supplying dummy ontologies to methods that will 
not admit a null ontology. Note that the blank ontology is not shared: each 
`BlankOntologySource` has a distinct blank ontology object, and they are _not_ 
equal! This means that the following statement is false:
-    
-    new BlankOntologySource().getRootOntology().equals(new 
BlankOntologySource().getRootOntology());
-    
+    * `BlankOntologySource`. Creates an `OWLOntology` with no ID and no 
axioms. It can be useful for supplying dummy ontologies to methods that will 
not admit a null ontology. Note that the blank ontology is not shared: each 
`BlankOntologySource` has a distinct blank ontology object, and they are _not_ 
equal!
 * __`TripleCollection` input sources__ comply with the Apache Clerezza API 
specification, which is also the default native implementation of OntoNet. The 
resulting ontology is a subtype of `TripleCollection` (`Graph` or `MGraph`) and 
uses a `TcProvider` as a store. Depending on the chosen Stanbol storage, it can 
be pesistent or in-memory. Generally, these input sources take less memory that 
OWL API counterparts, but do not allow RDF graphs to be managed using the OWL 
language constructs. Note that any `TripleCollection` can be exported as an 
`OWLOntology` afterwards, once stored.
     * `GraphContentInputSource`. Creates a `TripleCollection` by reading an 
input stream, which can be obtained from a file, URL etc. It can use any 
`TcProvider` as a store, otherwise it will create an in-memory triple 
collection, which will be copied to the Stanbol store when adding the ontology 
to a network. If this `TcProvider` is the `TcManager` used by Stanbol, its 
triples are not copied across.
     * `GraphSource`. Wraps an existing `TripleCollection` object. In general, 
it does not 'know' where the ontology was stored.


Reply via email to