TMP
[juplo-dialect] / src / main / java / de / juplo / thymeleaf / InactiveAttrProcessor.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 InactiveAttrProcessor extends AbstractSubstituteAttrProcessor
10 {
11   public InactiveAttrProcessor(final String prefix)
12   {
13     super(prefix, "inactive", "span");
14   }
15 }