com.x5.template.SnippetComment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chunk-templates Show documentation
Show all versions of chunk-templates Show documentation
Chunk Template Engine for Java
package com.x5.template;
import java.io.Writer;
public class SnippetComment extends SnippetPart
{
public SnippetComment(String text)
{
super(text);
}
/* comments do not render */
public void render(Writer out, Chunk context, String origin, int depth)
throws java.io.IOException
{
}
}