diff --git a/src/fr/inrialpes/exmo/ontowrap/skoslite/SKOSLiteThesaurus.java b/src/fr/inrialpes/exmo/ontowrap/skoslite/SKOSLiteThesaurus.java index 5680416820c3b37cb1dbad29f587a5c19f527ab3..e59e79e003f6a9faaca265eb8ffdd57ea417e43d 100644 --- a/src/fr/inrialpes/exmo/ontowrap/skoslite/SKOSLiteThesaurus.java +++ b/src/fr/inrialpes/exmo/ontowrap/skoslite/SKOSLiteThesaurus.java @@ -48,6 +48,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> { protected final static String SKOS_CONCEPT=SKOS_NS+"Concept"; protected final static String SKOS_PREFLABEL=SKOS_NS+"prefLabel"; 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_BROADERTRANSITIVE=SKOS_NS+"broaderTransitive"; protected final static String SKOS_NARROWERTRANSITIVE=SKOS_NS+"narrowerTransitive"; @@ -216,7 +217,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> { if (it==null) it=ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t)); else - it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t))); + it=it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t))); } while (it.hasNext()) { Node n = it.next().asNode(); @@ -235,7 +236,7 @@ public class SKOSLiteThesaurus implements HeavyLoadedOntology<Model> { if (it==null) it=ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t)); else - it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t))); + it=it.andThen(ontoInf.listObjectsOfProperty((Resource) o,ontoInf.getProperty(t))); } while (it.hasNext()) { Node n = it.next().asNode();