NIHVIVO-2613 added owl:AnnotationProperty to TBox extract
This commit is contained in:
parent
b20e04c290
commit
d2c8b16a13
1 changed files with 2 additions and 0 deletions
|
@ -51,6 +51,7 @@ public class JenaModelUtils {
|
||||||
nonIndividualTypeURIs.add(OWL.Restriction.getURI());
|
nonIndividualTypeURIs.add(OWL.Restriction.getURI());
|
||||||
nonIndividualTypeURIs.add(OWL.ObjectProperty.getURI());
|
nonIndividualTypeURIs.add(OWL.ObjectProperty.getURI());
|
||||||
nonIndividualTypeURIs.add(OWL.DatatypeProperty.getURI());
|
nonIndividualTypeURIs.add(OWL.DatatypeProperty.getURI());
|
||||||
|
nonIndividualTypeURIs.add(OWL.AnnotationProperty.getURI());
|
||||||
nonIndividualTypeURIs.add(OWL.Ontology.getURI());
|
nonIndividualTypeURIs.add(OWL.Ontology.getURI());
|
||||||
nonIndividualTypeURIs.add(RDFS.Class.getURI());
|
nonIndividualTypeURIs.add(RDFS.Class.getURI());
|
||||||
nonIndividualTypeURIs.add(RDF.Property.getURI());
|
nonIndividualTypeURIs.add(RDF.Property.getURI());
|
||||||
|
@ -122,6 +123,7 @@ private final OntModelSpec DEFAULT_ONT_MODEL_SPEC = OntModelSpec.OWL_MEM;
|
||||||
queryStrList.add( makeDescribeQueryStr( OWL.Class.getURI(), namespace, graphURI ) );
|
queryStrList.add( makeDescribeQueryStr( OWL.Class.getURI(), namespace, graphURI ) );
|
||||||
queryStrList.add( makeDescribeQueryStr( OWL.ObjectProperty.getURI(), namespace, graphURI ) );
|
queryStrList.add( makeDescribeQueryStr( OWL.ObjectProperty.getURI(), namespace, graphURI ) );
|
||||||
queryStrList.add( makeDescribeQueryStr( OWL.DatatypeProperty.getURI(), namespace, graphURI ) );
|
queryStrList.add( makeDescribeQueryStr( OWL.DatatypeProperty.getURI(), namespace, graphURI ) );
|
||||||
|
queryStrList.add( makeDescribeQueryStr( OWL.AnnotationProperty.getURI(), namespace, graphURI ) );
|
||||||
// if we're using to a hash namespace, the URI of the Ontology resource will be
|
// if we're using to a hash namespace, the URI of the Ontology resource will be
|
||||||
// that namespace minus the final hash mark.
|
// that namespace minus the final hash mark.
|
||||||
if ( namespace != null && namespace.endsWith("#") ) {
|
if ( namespace != null && namespace.endsWith("#") ) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue