Uses of Interface
org.thymeleaf.model.IModel
Packages that use IModel
Package
Description
-
Uses of IModel in org.thymeleaf.engine
Classes in org.thymeleaf.engine that implement IModelMethods in org.thymeleaf.engine that return IModelModifier and TypeMethodDescriptionfinal IModel
TemplateModel.cloneModel()
StandardModelFactory.createModel()
StandardModelFactory.createModel
(ITemplateEvent event) StandardModelFactory.parse
(TemplateData ownerTemplate, String template) Methods in org.thymeleaf.engine with parameters of type IModelModifier and TypeMethodDescriptionfinal void
void
void
ElementTagStructureHandler.insertBefore
(IModel model) void
ElementTagStructureHandler.insertImmediatelyAfter
(IModel model, boolean processable) final void
TemplateModel.insertModel
(int pos, IModel model) void
CDATASectionStructureHandler.replaceWith
(IModel model, boolean processable) void
CommentStructureHandler.replaceWith
(IModel model, boolean processable) void
DocTypeStructureHandler.replaceWith
(IModel model, boolean processable) void
ElementTagStructureHandler.replaceWith
(IModel model, boolean processable) void
ProcessingInstructionStructureHandler.replaceWith
(IModel model, boolean processable) void
TextStructureHandler.replaceWith
(IModel model, boolean processable) void
XMLDeclarationStructureHandler.replaceWith
(IModel model, boolean processable) void
-
Uses of IModel in org.thymeleaf.model
Methods in org.thymeleaf.model that return IModelModifier and TypeMethodDescriptionIModel.cloneModel()
Clones the model and all its events.IModelFactory.createModel()
Creates a new, empty model.IModelFactory.createModel
(ITemplateEvent event) Creates a new model containing only one event (initially).IModelFactory.parse
(TemplateData ownerTemplate, String template) Parse the template specified as String and return the result as a model.Methods in org.thymeleaf.model with parameters of type IModelModifier and TypeMethodDescriptionvoid
Add an entire model at the end of the sequence.void
IModel.insertModel
(int pos, IModel model) Inserts an entire model into a specific position in this model's sequence. -
Uses of IModel in org.thymeleaf.processor.cdatasection
Methods in org.thymeleaf.processor.cdatasection with parameters of type IModelModifier and TypeMethodDescriptionvoid
ICDATASectionStructureHandler.replaceWith
(IModel model, boolean processable) Instructs the engine to replace the current event with the specified model (aIModel
). -
Uses of IModel in org.thymeleaf.processor.comment
Methods in org.thymeleaf.processor.comment with parameters of type IModelModifier and TypeMethodDescriptionvoid
ICommentStructureHandler.replaceWith
(IModel model, boolean processable) Instructs the engine to replace the current event with the specified model (aIModel
). -
Uses of IModel in org.thymeleaf.processor.doctype
Methods in org.thymeleaf.processor.doctype with parameters of type IModelModifier and TypeMethodDescriptionvoid
IDocTypeStructureHandler.replaceWith
(IModel model, boolean processable) Instructs the engine to replace the current event with the specified model (aIModel
). -
Uses of IModel in org.thymeleaf.processor.element
Methods in org.thymeleaf.processor.element with parameters of type IModelModifier and TypeMethodDescriptionprotected abstract void
AbstractAttributeModelProcessor.doProcess
(ITemplateContext context, IModel model, AttributeName attributeName, String attributeValue, IElementModelStructureHandler structureHandler) protected final void
AbstractAttributeModelProcessor.doProcess
(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler) protected abstract void
AbstractElementModelProcessor.doProcess
(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler) void
IElementTagStructureHandler.insertBefore
(IModel model) Instructs the engine to insert the specified model just before the element being processed.void
IElementTagStructureHandler.insertImmediatelyAfter
(IModel model, boolean processable) Instructs the engine to insert the specified model just after the element being processed.final void
AbstractElementModelProcessor.process
(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler) void
IElementModelProcessor.process
(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler) Execute the processor.void
IElementTagStructureHandler.replaceWith
(IModel model, boolean processable) Instructs the engine to replace the current element with the specified model (aIModel
).void
Instructs the engine to set a new body for the current element, in the form of anIModel
. -
Uses of IModel in org.thymeleaf.processor.processinginstruction
Methods in org.thymeleaf.processor.processinginstruction with parameters of type IModelModifier and TypeMethodDescriptionvoid
IProcessingInstructionStructureHandler.replaceWith
(IModel model, boolean processable) Instructs the engine to replace the current event with the specified model (aIModel
). -
Uses of IModel in org.thymeleaf.processor.templateboundaries
Methods in org.thymeleaf.processor.templateboundaries with parameters of type IModel -
Uses of IModel in org.thymeleaf.processor.text
Methods in org.thymeleaf.processor.text with parameters of type IModelModifier and TypeMethodDescriptionvoid
ITextStructureHandler.replaceWith
(IModel model, boolean processable) Instructs the engine to replace the current event with the specified model (aIModel
). -
Uses of IModel in org.thymeleaf.processor.xmldeclaration
Methods in org.thymeleaf.processor.xmldeclaration with parameters of type IModelModifier and TypeMethodDescriptionvoid
IXMLDeclarationStructureHandler.replaceWith
(IModel model, boolean processable) Instructs the engine to replace the current event with the specified model (aIModel
).