이 콘텐츠는 선택한 언어로 제공되지 않습니다.
12.33. @TextConsumer Example
@TextConsumer
public class MyVisitor implements SAXVisitAfter
{
public void visitAfter(SAXElement element, ExecutionContext executionContext)
throws SmooksException, IOException
{
String fragmentText = element.getTextContent();
// ... etc ...
}
}
Note
The entirity of the fragment text will not be available until after the
SAXVisitAfter.visitAfter event.