Purpose: This is a non-synchronized, reusable implementation of StringBuffer. @author mmacivor
4344454647484950515253
} @Override public void characters(char[] ch, int start, int length) throws SAXException { if (characters == null) { characters = new StrBuffer(); } if (shouldReadChars) { characters.append(ch, start, length); }