configuration);
parser = new DLSyntaxParser(is);
}
Set<OWLAxiom> set = parser.parseAxioms();
ontology.getOWLOntologyManager().addAxioms(ontology, set);
return new DLSyntaxHTMLDocumentFormat();
} catch (ParseException e) {
throw new OWLParserException(e.getMessage(), e,
e.currentToken.beginLine, e.currentToken.beginColumn);
} finally {
if (is != null) {