/** �e�L�X�g�m�[�h���������܂��B */
private void handleText(int offset, int end, boolean escape) {
String text = _originalSource.substring(offset, end);
// System.out.println("FuzzyXMLParser.handleText: '" + text + "'");
closeAutocloseTags();
FuzzyXMLTextImpl textNode = new FuzzyXMLTextImpl(getParent(), FuzzyXMLUtil.decode(text, _isHTML), offset, end - offset);
textNode.setEscape(escape);
if (getParent() != null) {
((FuzzyXMLElement) getParent()).appendChild(textNode);
}
else {
_roots.add(textNode);