blob: 3b06b86d359cf6128ecf289f27756e47f628d6ae [file] [log] [blame]
package org.apache.commons.jelly;
import org.apache.commons.jelly.MissingAttributeException;
import org.apache.commons.jelly.JellyTagException;
import org.apache.commons.jelly.TagSupport;
import org.apache.commons.jelly.XMLOutput;
public class TJTest extends TagSupport {
public static final String TAG_NAME = "test";
public void doTag(XMLOutput output) throws MissingAttributeException, JellyTagException {
invokeBody(output);
}
}