| |
|
| javax.servlet.jsp.tagext.BodyTagSupport com.tagtraum.taglib.RepeatTag
RepeatTag | public class RepeatTag extends BodyTagSupport (Code) | | Repeats the body as often as specified with the rep attribute.
author: Hendrik Schreiber version: 1.1beta1 $Id: RepeatTag.java,v 1.5 2003/09/13 04:59:58 hendriks73 Exp $ |
Method Summary | |
public int | doAfterBody() Evaluates the body until currentRepetition == repetitions. | public int | doStartTag() Initializes currentRepetition and test whether
the body has to be evaluated at all. | public void | setRep(int repetitions) Sets the number of repetitions. |
doAfterBody | public int doAfterBody() throws JspException(Code) | | Evaluates the body until currentRepetition == repetitions.
|
doStartTag | public int doStartTag() throws JspException(Code) | | Initializes currentRepetition and test whether
the body has to be evaluated at all.
|
setRep | public void setRep(int repetitions)(Code) | | Sets the number of repetitions.
|
|
|
|