FileDocCategorySizeDatePackage
IfTag.javaAPI DocExample410Tue Feb 28 11:34:06 GMT 2006com.ora.jsp.tags.xmp

IfTag

public class IfTag extends SimpleTagSupport

Fields Summary
private boolean
test
Constructors Summary
Methods Summary
public voiddoTag()

	if (test && getJspBody() != null) {
	    getJspBody().invoke(null);
	}
    
public voidsetTest(boolean test)

	this.test = test;