Package org.thymeleaf.processor.comment
Class AbstractCommentProcessor
Object
org.thymeleaf.processor.AbstractProcessor
org.thymeleaf.processor.comment.AbstractCommentProcessor
- All Implemented Interfaces:
ICommentProcessor
,IProcessor
- Direct Known Subclasses:
StandardConditionalCommentProcessor
,StandardInliningCommentProcessor
public abstract class AbstractCommentProcessor
extends AbstractProcessor
implements ICommentProcessor
Basic abstract implementation of ICommentProcessor
.
This abstract implementation takes care of correct exception handling so that subclasses don't have to.
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
doProcess
(ITemplateContext context, IComment comment, ICommentStructureHandler structureHandler) final void
process
(ITemplateContext context, IComment comment, ICommentStructureHandler structureHandler) Execute the processor.Methods inherited from class org.thymeleaf.processor.AbstractProcessor
getPrecedence, getTemplateMode
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.thymeleaf.processor.IProcessor
getPrecedence, getTemplateMode
-
Constructor Details
-
AbstractCommentProcessor
-
-
Method Details
-
process
public final void process(ITemplateContext context, IComment comment, ICommentStructureHandler structureHandler) Description copied from interface:ICommentProcessor
Execute the processor.
The
IComment
object argument is immutable, so all modifications to this object or any instructions to be given to the engine should be done through the specifiedICommentStructureHandler
handler.- Specified by:
process
in interfaceICommentProcessor
- Parameters:
context
- the execution context.comment
- the event this processor is executing on.structureHandler
- the handler that will centralise modifications and commands to the engine.
-
doProcess
protected abstract void doProcess(ITemplateContext context, IComment comment, ICommentStructureHandler structureHandler)
-