Package org.thymeleaf.templateparser.raw
Interface IRawHandler
-
- All Known Implementing Classes:
TemplateHandlerAdapterRawHandler
public interface IRawHandler- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)voidhandleDocumentStart(long startTimeNanos, int line, int col)voidhandleText(char[] buffer, int offset, int len, int line, int col)
-
-
-
Method Detail
-
handleDocumentStart
void handleDocumentStart(long startTimeNanos, int line, int col) throws RawParseException- Throws:
RawParseException
-
handleDocumentEnd
void handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col) throws RawParseException- Throws:
RawParseException
-
handleText
void handleText(char[] buffer, int offset, int len, int line, int col) throws RawParseException- Throws:
RawParseException
-
-