Package org.thymeleaf.util
Class ProcessorConfigurationUtils.TemplateBoundariesProcessorWrapper
java.lang.Object
org.thymeleaf.util.ProcessorConfigurationUtils.AbstractProcessorWrapper
org.thymeleaf.util.ProcessorConfigurationUtils.TemplateBoundariesProcessorWrapper
- All Implemented Interfaces:
IAttributeDefinitionsAware,IElementDefinitionsAware,IProcessor,ITemplateBoundariesProcessor
- Enclosing class:
ProcessorConfigurationUtils
static final class ProcessorConfigurationUtils.TemplateBoundariesProcessorWrapper
extends ProcessorConfigurationUtils.AbstractProcessorWrapper
implements ITemplateBoundariesProcessor
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTemplateBoundariesProcessorWrapper(ITemplateBoundariesProcessor processor, IProcessorDialect dialect) -
Method Summary
Modifier and TypeMethodDescriptionvoidprocessTemplateEnd(ITemplateContext context, ITemplateEnd templateEnd, ITemplateBoundariesStructureHandler structureHandler) Execute the processor for aITemplateEndevent.voidprocessTemplateStart(ITemplateContext context, ITemplateStart templateStart, ITemplateBoundariesStructureHandler structureHandler) Execute the processor for aITemplateStartevent.Methods inherited from class org.thymeleaf.util.ProcessorConfigurationUtils.AbstractProcessorWrapper
getDialect, getDialectPrecedence, getPrecedence, getTemplateMode, setAttributeDefinitions, setElementDefinitions, toString, unwrapMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.thymeleaf.processor.IProcessor
getPrecedence, getTemplateMode
-
Field Details
-
processor
-
-
Constructor Details
-
TemplateBoundariesProcessorWrapper
TemplateBoundariesProcessorWrapper(ITemplateBoundariesProcessor processor, IProcessorDialect dialect)
-
-
Method Details
-
processTemplateStart
public void processTemplateStart(ITemplateContext context, ITemplateStart templateStart, ITemplateBoundariesStructureHandler structureHandler) Description copied from interface:ITemplateBoundariesProcessorExecute the processor for a
ITemplateStartevent.The
ITemplateStartobject argument is immutable, so all modifications to this object or any instructions to be given to the engine should be done through the specifiedITemplateBoundariesStructureHandlerhandler.- Specified by:
processTemplateStartin interfaceITemplateBoundariesProcessor- Parameters:
context- the execution context.templateStart- the event this processor is executing on.structureHandler- the handler that will centralise modifications and commands to the engine.
-
processTemplateEnd
public void processTemplateEnd(ITemplateContext context, ITemplateEnd templateEnd, ITemplateBoundariesStructureHandler structureHandler) Description copied from interface:ITemplateBoundariesProcessorExecute the processor for a
ITemplateEndevent.The
ITemplateEndobject argument is immutable, so all modifications to this object or any instructions to be given to the engine should be done through the specifiedITemplateBoundariesStructureHandlerhandler.- Specified by:
processTemplateEndin interfaceITemplateBoundariesProcessor- Parameters:
context- the execution context.templateEnd- the event this processor is executing on.structureHandler- the handler that will centralise modifications and commands to the engine.
-