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

ForTokensTag

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

A handler for <forTokens> 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 voidsetDelims(java.lang.String s)

        delims = s;
	// use the empty string to cause monolithic tokenization
        if (s == null)
	    delims = "";
    
public voidsetEnd(int end)

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

        items = s;
	// use the empty string to indicate "no iteration"
        if (s == null)
	    items = "";
    
public voidsetStep(int step)

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