public static interface

TemplateParser.TextCallback

chan.text.TemplateParser.TextCallback<H>

Class Overview

Text between tags callback.

Summary

Public Methods
abstract void onText(TemplateParser.Instance instance, H holder, String source, int start, int end)

Text between tags callback method.

Public Methods

public abstract void onText (TemplateParser.Instance instance, H holder, String source, int start, int end)

Text between tags callback method. See text(TextCallback).

Parameters
instance TemplateParser.Instance: Parser instance holder.
holder H: Intermediate data holder.
source String: Source string.
start int: Start index of text.
end int: End index of text.
Throws
ParseException to interrupt parsing process.