* @param start First index of character for our new Text node
* @param length count of characters for our Text node.
* @throws org.xml.sax.SAXException never
*/
public void characters(final char[] chars, final int start, final int length) throws org.xml.sax.SAXException {
_currentNode.addChild(new Text(new String(chars, start, length)));
}