Package org.thymeleaf.standard.processor
Class AbstractStandardMultipleAttributeModifierTagProcessor
- Object
-
- org.thymeleaf.processor.AbstractProcessor
-
- org.thymeleaf.processor.element.AbstractElementTagProcessor
-
- org.thymeleaf.processor.element.AbstractAttributeTagProcessor
-
- org.thymeleaf.standard.processor.AbstractStandardMultipleAttributeModifierTagProcessor
-
- All Implemented Interfaces:
IElementProcessor,IElementTagProcessor,IProcessor
- Direct Known Subclasses:
StandardAttrappendTagProcessor,StandardAttrprependTagProcessor,StandardAttrTagProcessor
public abstract class AbstractStandardMultipleAttributeModifierTagProcessor extends AbstractAttributeTagProcessor
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classAbstractStandardMultipleAttributeModifierTagProcessor.ModificationType
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractStandardMultipleAttributeModifierTagProcessor(TemplateMode templateMode, String dialectPrefix, String attrName, int precedence, AbstractStandardMultipleAttributeModifierTagProcessor.ModificationType modificationType)Build a new instance of this tag processor.protectedAbstractStandardMultipleAttributeModifierTagProcessor(TemplateMode templateMode, String dialectPrefix, String attrName, int precedence, AbstractStandardMultipleAttributeModifierTagProcessor.ModificationType modificationType, boolean restrictedExpressionExecution)Build a new instance of this tag processor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoProcess(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName, String attributeValue, IElementTagStructureHandler structureHandler)-
Methods inherited from class org.thymeleaf.processor.element.AbstractAttributeTagProcessor
doProcess
-
Methods inherited from class org.thymeleaf.processor.element.AbstractElementTagProcessor
getDialectPrefix, getMatchingAttributeName, getMatchingElementName, process
-
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 Detail
-
AbstractStandardMultipleAttributeModifierTagProcessor
protected AbstractStandardMultipleAttributeModifierTagProcessor(TemplateMode templateMode, String dialectPrefix, String attrName, int precedence, AbstractStandardMultipleAttributeModifierTagProcessor.ModificationType modificationType)
Build a new instance of this tag processor.
- Parameters:
templateMode- the template modedialectPrefix- the dialect prefoxattrName- the attribute name to be matchedprecedence- the precedence to be appliedmodificationType- type of modification to be performed on the attribute (replacement, append, prepend)
-
AbstractStandardMultipleAttributeModifierTagProcessor
protected AbstractStandardMultipleAttributeModifierTagProcessor(TemplateMode templateMode, String dialectPrefix, String attrName, int precedence, AbstractStandardMultipleAttributeModifierTagProcessor.ModificationType modificationType, boolean restrictedExpressionExecution)
Build a new instance of this tag processor.
- Parameters:
templateMode- the template modedialectPrefix- the dialect prefoxattrName- the attribute name to be matchedprecedence- the precedence to be appliedmodificationType- type of modification to be performed on the attribute (replacement, append, prepend)restrictedExpressionExecution- whether the expression to be executed (value of the attribute) should be executed in restricted mode (no parameter acess) or not.- Since:
- 3.0.9
-
-
Method Detail
-
doProcess
protected final void doProcess(ITemplateContext context, IProcessableElementTag tag, AttributeName attributeName, String attributeValue, IElementTagStructureHandler structureHandler)
- Specified by:
doProcessin classAbstractAttributeTagProcessor
-
-