Package org.thymeleaf.engine
Class OutputTemplateHandler
Object
org.thymeleaf.engine.AbstractTemplateHandler
org.thymeleaf.engine.OutputTemplateHandler
- All Implemented Interfaces:
ITemplateHandler
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
Constructor Summary
ConstructorsConstructorDescriptionOutputTemplateHandler
(Writer writer) Creates a new instance of this handler. -
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
handleText
(IText text) void
handleXMLDeclaration
(IXMLDeclaration xmlDeclaration) Methods inherited from class org.thymeleaf.engine.AbstractTemplateHandler
getContext, getNext, handleTemplateEnd, handleTemplateStart, setContext, setNext
-
Constructor Details
-
OutputTemplateHandler
Creates a new instance of this handler.
- Parameters:
writer
- the writer to which output will be written.
-
-
Method Details
-
handleText
- Specified by:
handleText
in interfaceITemplateHandler
- Overrides:
handleText
in classAbstractTemplateHandler
-
handleComment
- Specified by:
handleComment
in interfaceITemplateHandler
- Overrides:
handleComment
in classAbstractTemplateHandler
-
handleCDATASection
- Specified by:
handleCDATASection
in interfaceITemplateHandler
- Overrides:
handleCDATASection
in classAbstractTemplateHandler
-
handleStandaloneElement
- Specified by:
handleStandaloneElement
in interfaceITemplateHandler
- Overrides:
handleStandaloneElement
in classAbstractTemplateHandler
-
handleOpenElement
- Specified by:
handleOpenElement
in interfaceITemplateHandler
- Overrides:
handleOpenElement
in classAbstractTemplateHandler
-
handleCloseElement
- Specified by:
handleCloseElement
in interfaceITemplateHandler
- Overrides:
handleCloseElement
in classAbstractTemplateHandler
-
handleDocType
- Specified by:
handleDocType
in interfaceITemplateHandler
- Overrides:
handleDocType
in classAbstractTemplateHandler
-
handleXMLDeclaration
- Specified by:
handleXMLDeclaration
in interfaceITemplateHandler
- Overrides:
handleXMLDeclaration
in classAbstractTemplateHandler
-
handleProcessingInstruction
- Specified by:
handleProcessingInstruction
in interfaceITemplateHandler
- Overrides:
handleProcessingInstruction
in classAbstractTemplateHandler
-