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.
IModel
,
AbstractModelVisitor
Modifier and Type | Method and 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) |
void visit(ITemplateStart templateStart)
void visit(ITemplateEnd templateEnd)
void visit(IXMLDeclaration xmlDeclaration)
void visit(IDocType docType)
void visit(ICDATASection cdataSection)
void visit(IComment comment)
void visit(IText text)
void visit(IStandaloneElementTag standaloneElementTag)
void visit(IOpenElementTag openElementTag)
void visit(ICloseElementTag closeElementTag)
void visit(IProcessingInstruction processingInstruction)
Copyright © 2017 The THYMELEAF team. All rights reserved.