Uses of Interface
org.thymeleaf.model.ITemplateEvent
-
Packages that use ITemplateEvent Package Description org.thymeleaf.engine org.thymeleaf.model -
-
Uses of ITemplateEvent in org.thymeleaf.engine
Methods in org.thymeleaf.engine that return ITemplateEvent Modifier and Type Method Description ITemplateEvent
TemplateModel. get(int pos)
Methods in org.thymeleaf.engine with parameters of type ITemplateEvent Modifier and Type Method Description void
TemplateModel. add(ITemplateEvent event)
IModel
StandardModelFactory. createModel(ITemplateEvent event)
void
TemplateModel. insert(int pos, ITemplateEvent event)
void
TemplateModel. replace(int pos, ITemplateEvent event)
-
Uses of ITemplateEvent in org.thymeleaf.model
Subinterfaces of ITemplateEvent in org.thymeleaf.model Modifier and Type Interface Description interface
ICDATASection
Event interface defining a CDATA Section.interface
ICloseElementTag
Event interface defining a close element tag.interface
IComment
Event interface defining a Comment.interface
IDocType
Event interface defining a DOCTYPE clause.interface
IElementTag
Event interface defining an element tag (open, close or standalone).interface
IOpenElementTag
Event interface defining an open element tag.interface
IProcessableElementTag
Event interface defining a processable element tag, i.e an element tag on which processors can be applied (open, standalone).interface
IProcessingInstruction
Event interface defining a Processing Instruction.interface
IStandaloneElementTag
Event interface defining a standalone element tag.interface
ITemplateEnd
Event interface for events specifying the end of a template processing operation.interface
ITemplateStart
Event interface for events specifying the start of a template processing operation.interface
IText
Event interface defining a Text, i.e.interface
IXMLDeclaration
Event interface defining an XML declaration.Methods in org.thymeleaf.model that return ITemplateEvent Modifier and Type Method Description ITemplateEvent
IModel. get(int pos)
Retrieves a specific event from the model sequence.Methods in org.thymeleaf.model with parameters of type ITemplateEvent Modifier and Type Method Description void
IModel. add(ITemplateEvent event)
Adds an event at the end of the sequence.IModel
IModelFactory. createModel(ITemplateEvent event)
Creates a new model containing only one event (initially).void
IModel. insert(int pos, ITemplateEvent event)
Inserts an event into a specific position in the sequence.void
IModel. replace(int pos, ITemplateEvent event)
Replaces the event at the specified position with the one passed as argument.
-