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 classTemplateModelMethods in org.thymeleaf.engine that return IModel Modifier and Type Method Description IModelTemplateModel. cloneModel()IModelStandardModelFactory. createModel()IModelStandardModelFactory. createModel(ITemplateEvent event)IModelStandardModelFactory. parse(TemplateData ownerTemplate, String template)Methods in org.thymeleaf.engine with parameters of type IModel Modifier and Type Method Description voidTemplateModel. addModel(IModel model)voidTemplateBoundariesStructureHandler. insert(IModel model, boolean processable)voidElementTagStructureHandler. insertBefore(IModel model)voidElementTagStructureHandler. insertImmediatelyAfter(IModel model, boolean processable)voidTemplateModel. insertModel(int pos, IModel model)voidCDATASectionStructureHandler. replaceWith(IModel model, boolean processable)voidCommentStructureHandler. replaceWith(IModel model, boolean processable)voidDocTypeStructureHandler. replaceWith(IModel model, boolean processable)voidElementTagStructureHandler. replaceWith(IModel model, boolean processable)voidProcessingInstructionStructureHandler. replaceWith(IModel model, boolean processable)voidTextStructureHandler. replaceWith(IModel model, boolean processable)voidXMLDeclarationStructureHandler. replaceWith(IModel model, boolean processable)voidElementTagStructureHandler. 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 IModelIModel. cloneModel()Clones the model and all its events.IModelIModelFactory. createModel()Creates a new, empty model.IModelIModelFactory. createModel(ITemplateEvent event)Creates a new model containing only one event (initially).IModelIModelFactory. 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 voidIModel. addModel(IModel model)Add an entire model at the end of the sequence.voidIModel. 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 voidICDATASectionStructureHandler. 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 voidICommentStructureHandler. 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 voidIDocTypeStructureHandler. 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 voidAbstractAttributeModelProcessor. doProcess(ITemplateContext context, IModel model, AttributeName attributeName, String attributeValue, IElementModelStructureHandler structureHandler)protected voidAbstractAttributeModelProcessor. doProcess(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler)protected abstract voidAbstractElementModelProcessor. doProcess(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler)voidIElementTagStructureHandler. insertBefore(IModel model)Instructs the engine to insert the specified model just before the element being processed.voidIElementTagStructureHandler. insertImmediatelyAfter(IModel model, boolean processable)Instructs the engine to insert the specified model just after the element being processed.voidAbstractElementModelProcessor. process(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler)voidIElementModelProcessor. process(ITemplateContext context, IModel model, IElementModelStructureHandler structureHandler)Execute the processor.voidIElementTagStructureHandler. replaceWith(IModel model, boolean processable)Instructs the engine to replace the current element with the specified model (aIModel).voidIElementTagStructureHandler. 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 voidIProcessingInstructionStructureHandler. 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 voidITemplateBoundariesStructureHandler. 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 voidITextStructureHandler. 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 voidIXMLDeclarationStructureHandler. replaceWith(IModel model, boolean processable)Instructs the engine to replace the current event with the specified model (aIModel).
-