Package org.thymeleaf.util
Class ProcessorConfigurationUtils.AbstractElementProcessorWrapper
- java.lang.Object
-
- org.thymeleaf.util.ProcessorConfigurationUtils.AbstractProcessorWrapper
-
- org.thymeleaf.util.ProcessorConfigurationUtils.AbstractElementProcessorWrapper
-
- All Implemented Interfaces:
IAttributeDefinitionsAware,IElementDefinitionsAware,IElementProcessor,IProcessor
- Direct Known Subclasses:
ProcessorConfigurationUtils.ElementModelProcessorWrapper,ProcessorConfigurationUtils.ElementTagProcessorWrapper
- Enclosing class:
- ProcessorConfigurationUtils
abstract static class ProcessorConfigurationUtils.AbstractElementProcessorWrapper extends ProcessorConfigurationUtils.AbstractProcessorWrapper implements IElementProcessor
-
-
Field Summary
Fields Modifier and Type Field Description private IElementProcessorprocessor
-
Constructor Summary
Constructors Constructor Description AbstractElementProcessorWrapper(IElementProcessor processor, IProcessorDialect dialect)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MatchingAttributeNamegetMatchingAttributeName()Returns the attribute name that would make this processor match (if any).MatchingElementNamegetMatchingElementName()Returns the element name that would make this processor match (if any).-
Methods inherited from class org.thymeleaf.util.ProcessorConfigurationUtils.AbstractProcessorWrapper
getDialect, getDialectPrecedence, getPrecedence, getTemplateMode, setAttributeDefinitions, setElementDefinitions, toString, unwrap
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.thymeleaf.processor.IProcessor
getPrecedence, getTemplateMode
-
-
-
-
Field Detail
-
processor
private final IElementProcessor processor
-
-
Constructor Detail
-
AbstractElementProcessorWrapper
AbstractElementProcessorWrapper(IElementProcessor processor, IProcessorDialect dialect)
-
-
Method Detail
-
getMatchingElementName
public final MatchingElementName getMatchingElementName()
Description copied from interface:IElementProcessorReturns the element name that would make this processor match (if any).
- Specified by:
getMatchingElementNamein interfaceIElementProcessor- Returns:
- the element name.
-
getMatchingAttributeName
public final MatchingAttributeName getMatchingAttributeName()
Description copied from interface:IElementProcessorReturns the attribute name that would make this processor match (if any).
- Specified by:
getMatchingAttributeNamein interfaceIElementProcessor- Returns:
- the attribute name.
-
-