Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 940ebd85 authored by Jérôme David's avatar Jérôme David
Browse files

bug in retrieving annotations corrected

parent d2027086
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> { ...@@ -48,6 +48,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> {
protected final static String SKOS_CONCEPT=SKOS_NS+"Concept"; protected final static String SKOS_CONCEPT=SKOS_NS+"Concept";
protected final static String SKOS_PREFLABEL=SKOS_NS+"prefLabel"; protected final static String SKOS_PREFLABEL=SKOS_NS+"prefLabel";
protected final static String SKOS_NOTE=SKOS_NS+"note"; protected final static String SKOS_NOTE=SKOS_NS+"note";
//protected final static String SKOS_SCOPENOTE=SKOS_NS+"scopeNote";
protected final static String SKOS_NOTATION=SKOS_NS+"notation"; protected final static String SKOS_NOTATION=SKOS_NS+"notation";
protected final static String SKOS_BROADERTRANSITIVE=SKOS_NS+"broaderTransitive"; protected final static String SKOS_BROADERTRANSITIVE=SKOS_NS+"broaderTransitive";
protected final static String SKOS_NARROWERTRANSITIVE=SKOS_NS+"narrowerTransitive"; protected final static String SKOS_NARROWERTRANSITIVE=SKOS_NS+"narrowerTransitive";
...@@ -216,7 +217,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> { ...@@ -216,7 +217,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> {
if (it==null) if (it==null)
it=ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t)); it=ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t));
else else
it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t))); it=it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t)));
} }
while (it.hasNext()) { while (it.hasNext()) {
Node n = it.next().asNode(); Node n = it.next().asNode();
...@@ -235,7 +236,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> { ...@@ -235,7 +236,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> {
if (it==null) if (it==null)
it=ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t)); it=ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t));
else else
it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t))); it=it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t)));
} }
while (it.hasNext()) { while (it.hasNext()) {
Node n = it.next().asNode(); Node n = it.next().asNode();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment