public interface IProcessingInstructionProcessor extends IProcessor
Base interface for all processors that execute on Processing Instruction events (IProcessingInstruction
).
AbstractProcessingInstructionProcessor
,
IProcessingInstructionStructureHandler
Modifier and Type | Method and Description |
---|---|
void |
process(ITemplateContext context,
IProcessingInstruction processingInstruction,
IProcessingInstructionStructureHandler structureHandler)
Execute the processor.
|
getPrecedence, getTemplateMode
void process(ITemplateContext context, IProcessingInstruction processingInstruction, IProcessingInstructionStructureHandler structureHandler)
Execute the processor.
The IProcessingInstruction
object argument is immutable, so all modifications to this object or any
instructions to be given to the engine should be done through the specified
IProcessingInstructionStructureHandler
handler.
context
- the execution context.processingInstruction
- the event this processor is executing on.structureHandler
- the handler that will centralise modifications and commands to the engine.Copyright © 2016 The THYMELEAF team. All rights reserved.