final List<HtmlTag> list = listLocal.get();
list.clear();
int textStart = 0;
while (true) {
final HtmlTag tag = nextTag(page, '<', '>');
if (tag == null) {
break;
}
if (textStart != this.s) {
String text = page.substring(textStart, this.s);
if (text.length() != 0) {
list.add(new HtmlTag(Tag.TEXT, HtmlTag.Type.ATOMIC, text, page,
textStart, this.s));
}
}
textStart = this.e + 1;