Represents the start of an XML document ... serves up elements wrapped in handlers for a specified schema.
179180181182183184185186187188189
* * @see org.xml.sax.ContentHandler#startDocument() */ public void startDocument(){ try { document = new DocumentHandler(ehf); handlers.push(document); } catch (RuntimeException e) { logger.warning(e.toString()); throw e; }