Example usage for org.apache.commons.jelly TagSupport subclass-usage

List of usage examples for org.apache.commons.jelly TagSupport subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.jelly TagSupport subclass-usage.

Usage

From source file com.cyclopsgroup.waterview.utils.TagSupportBase.java

/**
 * Base jelly tag
 *
 * @author <a href="mailto:jiaqi.guo@gmail.com">Jiaqi Guo </a>
 */
public abstract class TagSupportBase extends TagSupport {

From source file org.apache.cactus.integration.maven.CactusScannerTag.java

/**
 * Cactus Jelly Tag that scans Ant FileSets and return a list of
 * qualified class name that are Cactus TestCases (i.e.
 * ServletTestCase, JspTestCase or FilterTestCase) or subclasses
 * of Cactus TestCases.
 *

From source file org.dentaku.gentaku.cartridge.event.WerkflowTag.java

public class WerkflowTag extends TagSupport {
    private Object metadataClass;

    public void setMetadata(Object metadataClass) {
        this.metadataClass = metadataClass;
    }