140141142143144145146147
_elementName = elementName; _attributes.clear(); _startTagOpen = true; } catch (SAXException e) { throw new TransletException(e); } }
191192193194195196197198
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); } }
321322323324325326327328
_cdataStack.push(new Integer(_depth)); } } } catch (SAXException e) { throw new TransletException(e); } }
332333334335336337338339
// Output start bracket - "<![CDATA[" _saxHandler.characters(BEGCDATA, 0, BEGCDATA.length); _cdataTagOpen = true; } catch (SAXException e) { throw new TransletException(e); } }
343344345346347348349350
// Output closing bracket - "]]>" _saxHandler.characters(ENDCDATA, 0, ENDCDATA.length); _cdataTagOpen = false; } catch (SAXException e) { throw new TransletException(e); } }
8485868788899091
public void startDocument() throws TransletException { try { _saxHandler.startDocument(); } catch (SAXException e) { throw new TransletException(e); } }
93949596979899100
public void endDocument() throws TransletException { try { _saxHandler.endDocument(); } catch (SAXException e) { throw new TransletException(e); } }
115116117118119120121122
try { _saxHandler.characters(characters.toCharArray(), 0, characters.length()); } catch (SAXException e) { throw new TransletException(e); } }