Package org.thymeleaf.engine
Interface IGatheringModelProcessable
-
- All Superinterfaces:
IEngineProcessable
- All Known Implementing Classes:
AbstractGatheringModelProcessable,GatheringModelProcessable,IteratedGatheringModelProcessable
interface IGatheringModelProcessable extends IEngineProcessable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidgatherCDATASection(ICDATASection cdataSection)voidgatherCloseElement(ICloseElementTag closeElementTag)voidgatherComment(IComment comment)voidgatherDocType(IDocType docType)voidgatherOpenElement(IOpenElementTag openElementTag)voidgatherProcessingInstruction(IProcessingInstruction processingInstruction)voidgatherStandaloneElement(IStandaloneElementTag standaloneElementTag)voidgatherText(IText text)voidgatherUnmatchedCloseElement(ICloseElementTag closeElementTag)voidgatherXMLDeclaration(IXMLDeclaration xmlDeclaration)ModelgetInnerModel()ProcessorExecutionVarsinitializeProcessorExecutionVars()booleanisGatheringFinished()voidresetGatheredSkipFlags()-
Methods inherited from interface org.thymeleaf.engine.IEngineProcessable
process
-
-
-
-
Method Detail
-
isGatheringFinished
boolean isGatheringFinished()
-
getInnerModel
Model getInnerModel()
-
resetGatheredSkipFlags
void resetGatheredSkipFlags()
-
initializeProcessorExecutionVars
ProcessorExecutionVars initializeProcessorExecutionVars()
-
gatherText
void gatherText(IText text)
-
gatherComment
void gatherComment(IComment comment)
-
gatherCDATASection
void gatherCDATASection(ICDATASection cdataSection)
-
gatherStandaloneElement
void gatherStandaloneElement(IStandaloneElementTag standaloneElementTag)
-
gatherOpenElement
void gatherOpenElement(IOpenElementTag openElementTag)
-
gatherCloseElement
void gatherCloseElement(ICloseElementTag closeElementTag)
-
gatherUnmatchedCloseElement
void gatherUnmatchedCloseElement(ICloseElementTag closeElementTag)
-
gatherDocType
void gatherDocType(IDocType docType)
-
gatherXMLDeclaration
void gatherXMLDeclaration(IXMLDeclaration xmlDeclaration)
-
gatherProcessingInstruction
void gatherProcessingInstruction(IProcessingInstruction processingInstruction)
-
-