Package org.thymeleaf.engine
Interface ITemplateHandler
- All Known Implementing Classes:
AbstractTemplateHandler
,ModelBuilderTemplateHandler
,OutputTemplateHandler
,ProcessorTemplateHandler
public interface ITemplateHandler
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
Method Summary
Modifier and TypeMethodDescriptionvoid
handleCDATASection
(ICDATASection cdataSection) void
handleCloseElement
(ICloseElementTag closeElementTag) void
handleComment
(IComment comment) void
handleDocType
(IDocType docType) void
handleOpenElement
(IOpenElementTag openElementTag) void
handleProcessingInstruction
(IProcessingInstruction processingInstruction) void
handleStandaloneElement
(IStandaloneElementTag standaloneElementTag) void
handleTemplateEnd
(ITemplateEnd templateEnd) void
handleTemplateStart
(ITemplateStart templateStart) void
handleText
(IText text) void
handleXMLDeclaration
(IXMLDeclaration xmlDeclaration) void
setContext
(ITemplateContext context) void
setNext
(ITemplateHandler next)
-
Method Details
-
setNext
-
setContext
-
handleTemplateStart
-
handleTemplateEnd
-
handleXMLDeclaration
-
handleDocType
-
handleCDATASection
-
handleComment
-
handleText
-
handleStandaloneElement
-
handleOpenElement
-
handleCloseElement
-
handleProcessingInstruction
-