110111112113114115116117
public void endDocument() throws TransletException { try { _domBuilder.endDocument(); } catch (SAXException e) { throw new TransletException(e); } }
125126127128129130131132
try { maybeEmitStartElement(); _domBuilder.characters(characters, offset, length); } catch (SAXException e) { throw new TransletException(e); } }
136137138139140141142143
maybeEmitStartElement(); _openElementName = elementName; _attributes.clear(); } catch (SAXException e) { throw new TransletException(e); } }
146147148149150151152153
try { maybeEmitStartElement(); _domBuilder.endElement(null, null, elementName); } catch (SAXException e) { throw new TransletException(e); } }
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); } }