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 void
handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
void
handleDocumentStart(long startTimeNanos, int line, int col)
void
handleText(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
-
-