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

ForEachTag

public class ForEachTag extends org.apache.taglibs.standard.tag.common.core.ForEachSupport implements javax.servlet.jsp.tagext.IterationTag, javax.servlet.jsp.jstl.core.LoopTag

A handler for <forEach> that supports rtexprvalue-based attributes.

author
Shawn Bayern

Fields Summary
Constructors Summary
Methods Summary
public voidsetBegin(int begin)

        this.beginSpecified = true;
        this.begin = begin;
        validateBegin();
    
public voidsetEnd(int end)

        this.endSpecified = true;
        this.end = end;
        validateEnd();
    
public voidsetItems(java.lang.Object o)

	// for null items, simulate an empty list
	if (o == null)
	    rawItems = new ArrayList();
        else
	    rawItems = o;
    
public voidsetStep(int step)

        this.stepSpecified = true;
        this.step = step;
        validateStep();