FileDocCategorySizeDatePackage
IfTag.javaAPI DocGlassfish v2 API3555Sat May 05 19:17:58 BST 2007org.apache.taglibs.standard.tag.rt.core

IfTag

public class IfTag extends javax.servlet.jsp.jstl.core.ConditionalTagSupport

Tag handler for <if> in JSTL's rtexprvalue library. Because of the support provided by the ConditionalTagSupport class, this tag is trivial enough not to require a separate base supporting class common to both libraries.

author
Shawn Bayern

Fields Summary
private boolean
test
Constructors Summary
public IfTag()

        super();
        init();
    
Methods Summary
protected booleancondition()

        return test;
    
private voidinit()

        test = false;
    
public voidrelease()

        super.release();
        init();
    
public voidsetTest(boolean test)

        this.test = test;