335336337338339340341342
if (_cdataTagOpen) closeCDATA(); // Close output document _saxHandler.endDocument(); } catch (SAXException e) { throw new TransletException(e); } }
344345346347348349350351
public void characters(String str) throws TransletException { try { characters(str.toCharArray(), 0, str.length()); } catch (SAXException e) { throw new TransletException(e); } }
459460461462463464465466
_saxHandler.characters(ch, off, len); return; } } catch (SAXException e) { throw new TransletException(e); } }
535536537538539540541542
return; } } catch (SAXException e) { throw new TransletException(e); } }
957958959960961962963964
_depth--; return; } } catch (SAXException e) { throw new TransletException(e); } }
979980981982983984985986
_saxHandler.characters(BEGCOMM, 0, BEGCOMM_length); characters(comment); _saxHandler.characters(ENDCOMM, 0, ENDCOMM_length); } catch (SAXException e) { throw new TransletException(e); } }
10041005100610071008100910101011
// Pass the processing instruction to the SAX handler _saxHandler.processingInstruction(target, data); } catch (SAXException e) { throw new TransletException(e); } }
10831084108510861087108810891090
_nodeStack.pop(); popNamespace((String)_prefixStack.pop()); } } catch (SAXException e) { throw new TransletException(e); } }
11121113111411151116111711181119
BasisLibrary.runTimeError(BasisLibrary.STRAY_NAMESPACE_ERR, prefix, uri); } } catch (SAXException e) { throw new TransletException(e); } }
93949596979899100
// Close output document _saxHandler.endDocument(); } catch (SAXException e) { throw new TransletException(e); } }