Package org.thymeleaf.util
Class ProcessorConfigurationUtils.DocTypeProcessorWrapper
java.lang.Object
org.thymeleaf.util.ProcessorConfigurationUtils.AbstractProcessorWrapper
org.thymeleaf.util.ProcessorConfigurationUtils.DocTypeProcessorWrapper
- All Implemented Interfaces:
IAttributeDefinitionsAware,IElementDefinitionsAware,IDocTypeProcessor,IProcessor
- Enclosing class:
ProcessorConfigurationUtils
static final class ProcessorConfigurationUtils.DocTypeProcessorWrapper
extends ProcessorConfigurationUtils.AbstractProcessorWrapper
implements IDocTypeProcessor
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDocTypeProcessorWrapper(IDocTypeProcessor processor, IProcessorDialect dialect) -
Method Summary
Modifier and TypeMethodDescriptionvoidprocess(ITemplateContext context, IDocType docType, IDocTypeStructureHandler structureHandler) Execute the processor.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
-
DocTypeProcessorWrapper
DocTypeProcessorWrapper(IDocTypeProcessor processor, IProcessorDialect dialect)
-
-
Method Details
-
process
public void process(ITemplateContext context, IDocType docType, IDocTypeStructureHandler structureHandler) Description copied from interface:IDocTypeProcessorExecute 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.- Specified by:
processin interfaceIDocTypeProcessor- 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.
-