| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MergeMacroInfo |
|
| 1.0;1 |
| 1 | package org.webslinger.macros; | |
| 2 | ||
| 3 | import org.webslinger.template.TemplateMacro; | |
| 4 | import org.webslinger.template.TemplateMacroInfo; | |
| 5 | ||
| 6 | 50 | public class MergeMacroInfo implements TemplateMacroInfo { |
| 7 | public TemplateMacro[] getMacros() { | |
| 8 | 50 | return new TemplateMacro[] {new MergeMacro("TemplateMerge", true, false), new MergeMacro("Merge", true, false)}; |
| 9 | } | |
| 10 | } |