WIP:Ported app to Thymeleaf 3.0.x
[juplo-dialect] / src / main / java / de / juplo / thymeleaf / InactiveAttributeProcessor.java
1 package de.juplo.thymeleaf;
2
3
4 /**
5  * Replaces the element by the tag <code>&lt;span&gt;</code>, if it is
6  * marked as inactive.
7  * @author Kai Moritz
8  */
9 public class InactiveAttributeProcessor extends AbstractSubstituteAttributeProcessor
10 {
11   public InactiveAttributeProcessor(String prefix)
12   {
13     super(prefix, "inactive", "span");
14   }
15 }