Uses of Interface
org.thymeleaf.model.IModel
-
-
Uses of IModel in org.thymeleaf.engine
Classes in org.thymeleaf.engine that implement IModel Modifier and Type Class Description class
TemplateModel
Methods in org.thymeleaf.engine that return IModel Modifier and Type Method Description IModel
TemplateModel. cloneModel()
IModel
StandardModelFactory. createModel()
IModel
StandardModelFactory. createModel(ITemplateEvent event)
IModel
StandardModelFactory. parse(TemplateData ownerTemplate, String template)
Methods in org.thymeleaf.engine with parameters of type IModel Modifier and Type Method Description void
TemplateModel. addModel(IModel model)
void
TemplateBoundariesStructureHandler. insert(IModel model, boolean processable)
void
ElementTagStructureHandler. insertBefore(IModel model)
void
ElementTagStructureHandler. insertImmediatelyAfter(IModel model, boolean processable)
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
ElementTagStructureHandler. setBody(IModel model, boolean processable)
-
Uses of IModel in org.thymeleaf.model
Methods in org.thymeleaf.model that return IModel Modifier and Type Method Description IModel
IModel. cloneModel()
Clones the model and all its events.IModel
IModelFactory. createModel()
Creates a new, empty model.IModel
IModelFactory. createModel(ITemplateEvent event)
Creates a new model containing only one event (initially).IModel
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 IModel Modifier and Type Method Description void
IModel. addModel(IModel model)
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 IModel Modifier and Type Method Description void
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 IModel Modifier and Type Method Description void
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 IModel Modifier and Type Method Description void
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 IModel Modifier and Type Method Description protected abstract void
AbstractAttributeModelProcessor. doProcess(ITemplateContext context, IModel model, AttributeName attributeName, String attributeValue, IElementModelStructureHandler structureHandler)
protected 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.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
IElementTagStructureHandler. setBody(IModel model, boolean processable)
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 IModel Modifier and Type Method Description void
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 Modifier and Type Method Description void
ITemplateBoundariesStructureHandler. insert(IModel model, boolean processable)
Instructs the engine to insert the specified model. -
Uses of IModel in org.thymeleaf.processor.text
Methods in org.thymeleaf.processor.text with parameters of type IModel Modifier and Type Method Description void
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 IModel Modifier and Type Method Description void
IXMLDeclarationStructureHandler. replaceWith(IModel model, boolean processable)
Instructs the engine to replace the current event with the specified model (aIModel
).
-