65666768697071
* @throws org.xml.sax.SAXException if there is a parsing error. */ public void characters(final char[] ch, final int start, final int length) throws SAXException { getChildren().add(new StaticText(new String(ch, start, length))); }
9596979899100101102
public void characters(final char[] ch, final int start, final int length) throws SAXException { if (hasCData) { children.add(new StaticText(new String(ch, start, length))); } }
8990919293949596
273274275276277278279280281282
final RawText text = (RawText) node; xmlWriter.writeText(text.getText()); } else if (node instanceof StaticText) { final StaticText text = (StaticText) node; xmlWriter.writeTextNormalized(text.getText(), false); } } }
283284285286287288289290291292
59606162636465
8687888990919293
134135136137138139140141142143144
final Attributes atts) throws SAXException { if (textBuffer != null) { nodes.add(new StaticText(textBuffer.toString())); textBuffer = null; } final XmlReadHandler elementTypeHanders = super.getHandlerForChild(uri, tagName, atts);
180181182183184185186187188189190
*/ protected void doneParsing() throws SAXException { if (textBuffer != null) { nodes.add(new StaticText(textBuffer.toString())); textBuffer = null; } final Section section = (Section) getElement(); configureElement(section);