Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 9bb0aa09 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- Added a guard in loadOntology for OWLAPI 3.0, in case the ontology has no URI (ontowrap)

parent 39d795db
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,8 @@ with a warning:
preserving the previous behaviour (impl)</li>
<li>Added level lines in the triangle display of <tt>GroupEval</tt> (util)</li>
<li>Added <tt>BasicAlignment.deleteAllCells()</tt> (impl)</li>
<li>Added a guard in <tt>loadOntology</tt> for OWLAPI 3.0, in case the
ontology has no URI (ontowrap)</li>
<li>Suppressed the guard for applying the Hungarian algorithm to
equisimilarity situations (impl)</li>
<li>Slightly modified the parser so that it accepts Alignment URI with
......
/*
* $Id$
*
* Copyright (C) INRIA, 2008-2010
* Copyright (C) INRIA, 2008-2011
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
......@@ -113,7 +113,14 @@ public class OWLAPI3OntologyFactory extends OntologyFactory {
onto.setFormURI( formalismUri );
onto.setOntology( ontology );
onto.setFile( uri );
onto.setURI( ontology.getOntologyID().getOntologyIRI().toURI() );
try {
onto.setURI( ontology.getOntologyID().getOntologyIRI().toURI() );
} catch ( Exception e ) { // Should be a NullPointerException
// Better put in the OntowrapException of loaded
// The ontology has no URI. In principle, it is not valid
// It may be possible to put the uri instead (now it is void)
e.printStackTrace();
}
cache.recordOntology( uri, onto );
//System.err.println( " after-cache: "+cache.getOntology( uri ) );
return onto;
......
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