Package org.thymeleaf.processor.doctype
Interface IDocTypeProcessor
-
- All Superinterfaces:
IProcessor
- All Known Implementing Classes:
AbstractDocTypeProcessor,StandardTranslationDocTypeProcessor
public interface IDocTypeProcessor extends IProcessor
Base interface for all processors that execute on DOCTYPE events (
IDocType).- Since:
- 3.0.0
- Author:
- Daniel Fernández
- See Also:
AbstractDocTypeProcessor,IDocTypeStructureHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(ITemplateContext context, IDocType docType, IDocTypeStructureHandler structureHandler)Execute the processor.-
Methods inherited from interface org.thymeleaf.processor.IProcessor
getPrecedence, getTemplateMode
-
-
-
-
Method Detail
-
process
void process(ITemplateContext context, IDocType docType, IDocTypeStructureHandler structureHandler)
Execute the processor.
The
IDocTypeobject argument is immutable, so all modifications to this object or any instructions to be given to the engine should be done through the specifiedIDocTypeStructureHandlerhandler.- Parameters:
context- the execution context.docType- the event this processor is executing on.structureHandler- the handler that will centralise modifications and commands to the engine.
-
-