fDocumentHandler.characters(chars, offset, length);
// call all active identity constraints
int count = fMatcherStack.getMatcherCount();
for (int i = 0; i < count; i++) {
XPathMatcher matcher = fMatcherStack.getMatcherAt(i);
if (DEBUG_IDENTITY_CONSTRAINTS) {
String text = new String(chars, offset, length);
System.out.println("<IC>: "+matcher.toString()+"#characters("+text+")");
}
matcher.characters(chars, offset, length);
}
}
fTrailing = (spaces > 1)?true:false;
fFirstChunk = false;
return;
}
}
}
fFirstChunk = false;
fDocumentHandler.characters(chars, offset, length);
// call all active identity constraints
int count = fMatcherStack.getMatcherCount();
for (int i = 0; i < count; i++) {
XPathMatcher matcher = fMatcherStack.getMatcherAt(i);
if (DEBUG_IDENTITY_CONSTRAINTS) {
String text = new String(chars, offset, length);
System.out.println("<IC>: "+matcher.toString()+"#characters("+text+")");
}
matcher.characters(chars, offset, length);
}
}