Package org.thymeleaf.model
Interface IModelVisitor
-
- All Known Implementing Classes:
AbstractModelVisitor
public interface IModelVisitorInterface 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 voidvisit(ICDATASection cdataSection)voidvisit(ICloseElementTag closeElementTag)voidvisit(IComment comment)voidvisit(IDocType docType)voidvisit(IOpenElementTag openElementTag)voidvisit(IProcessingInstruction processingInstruction)voidvisit(IStandaloneElementTag standaloneElementTag)voidvisit(ITemplateEnd templateEnd)voidvisit(ITemplateStart templateStart)voidvisit(IText text)voidvisit(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)
-
-