167168169170171172173174
try { // TODO: housekeeping necessary to emit endPrefixMapping() _domBuilder.startPrefixMapping(prefix, uri); } catch (SAXException e) { throw new TransletException(e); } }
180181182183184185186187
char[] chars = comment.toCharArray(); _domBuilder.comment(chars, 0, chars.length); } } catch (SAXException e) { throw new TransletException(e); } }
191192193194195196197198
try { maybeEmitStartElement(); _domBuilder.processingInstruction(target, data); } catch (SAXException e) { throw new TransletException(e); } }
93949596979899100
public void startDocument() throws TransletException { try { _saxHandler.startDocument(); } catch (SAXException e) { throw new TransletException(e); } }
119120121122123124125126
if (_lexHandler != null) { _lexHandler.comment(comment.toCharArray(), 0, comment.length()); } } catch (SAXException e) { throw new TransletException(e); } }
106107108109110111112113
// Close output document _saxHandler.endDocument(); } catch (SAXException e) { throw new TransletException(e); } }
140141142143144145146147
_elementName = elementName; _attributes.clear(); _startTagOpen = true; } catch (SAXException e) { throw new TransletException(e); } }
else { _saxHandler.characters(ch, off, len); } } catch (SAXException e) { throw new TransletException(e); } }
217218219220221222223224
} _depth--; } catch (SAXException e) { throw new TransletException(e); } }
257258259260261262263264
// Pass the processing instruction to the SAX handler _saxHandler.processingInstruction(target, data); } catch (SAXException e) { throw new TransletException(e); } }