Package org.thymeleaf.model
Interface IModelVisitor
-
- All Known Implementing Classes:
AbstractModelVisitor
public interface IModelVisitor
Interface to be implemented by all classes modeling actions to be performed on an event or sequence of events according to the Visitor pattern.
These objects are usually applied by means of the
IModel.accept(IModelVisitor)
method.- Since:
- 3.0.0
- Author:
- Daniel Fernández
- See Also:
IModel
,AbstractModelVisitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(ICDATASection cdataSection)
void
visit(ICloseElementTag closeElementTag)
void
visit(IComment comment)
void
visit(IDocType docType)
void
visit(IOpenElementTag openElementTag)
void
visit(IProcessingInstruction processingInstruction)
void
visit(IStandaloneElementTag standaloneElementTag)
void
visit(ITemplateEnd templateEnd)
void
visit(ITemplateStart templateStart)
void
visit(IText text)
void
visit(IXMLDeclaration xmlDeclaration)
-
-
-
Method Detail
-
visit
void visit(ITemplateStart templateStart)
-
visit
void visit(ITemplateEnd templateEnd)
-
visit
void visit(IXMLDeclaration xmlDeclaration)
-
visit
void visit(IDocType docType)
-
visit
void visit(ICDATASection cdataSection)
-
visit
void visit(IComment comment)
-
visit
void visit(IText text)
-
visit
void visit(IStandaloneElementTag standaloneElementTag)
-
visit
void visit(IOpenElementTag openElementTag)
-
visit
void visit(ICloseElementTag closeElementTag)
-
visit
void visit(IProcessingInstruction processingInstruction)
-
-