Ejemplo n.º 1
0
 public void readSAX(
     InputSource is, String schemaID, ContentHandler contentHandler, ErrorHandler errorHandler)
     throws SAXException, ParserConfigurationException, Exception {
   XMLDataReader xmlDataReader = getXMLDataReader();
   xmlDataReader.readSAX(is, schemaID, contentHandler, errorHandler);
 }
Ejemplo n.º 2
0
 public Document readDOM4J(InputSource is, String schemaID, ErrorHandler errorHandler)
     throws SAXException, ParserConfigurationException, Exception {
   XMLDataReader xmlDataReader = getXMLDataReader();
   return xmlDataReader.readDOM4J(is, schemaID, errorHandler);
 }