* @return A SAXResult that geta events from a SAX parser and forwards them to
* the inputHandler.
*/
private Result newObjectResult(DocumentInputHandler inputHandler) {
SAXInputHandler saxHandler = new SAXInputHandler(inputHandler);
return new SAXResult(saxHandler);
}