} catch (URISyntaxException urise) {
throw new ValidatorException("Error while performing validation, invalid document URI.", urise);
}
Validator validator = new DefaultValidator();
Document document = getDOM();
return new DocumentReport( validator.validate(dURI, document, applyFix), document );
}
private Document parse() throws IOException, SAXException, TransformerException {
final DOMParser parser = new DOMParser() {