Package com.jalios.jtaglib
Class ForeachTag
- java.lang.Object
 - 
- javax.servlet.jsp.tagext.TagSupport
 - 
- javax.servlet.jsp.tagext.BodyTagSupport
 - 
- com.jalios.jtaglib.ForeachTag
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,javax.servlet.jsp.tagext.BodyTag,javax.servlet.jsp.tagext.IterationTag,javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.tagext.Tag
public class ForeachTag extends javax.servlet.jsp.tagext.BodyTagSupport implements javax.servlet.jsp.tagext.IterationTagThis tag iterates over a Collection.- Version:
 - $Revision: 32210 $
 - Author:
 - Olivier Dedieu
 - See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static java.lang.StringREVISION 
- 
Constructor Summary
Constructors Constructor Description ForeachTag() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdoAfterBody()intdoStartTag()voidsetArray(java.lang.Object[] array)voidsetCollection(java.util.Collection collection)voidsetCounter(java.lang.String counterName)voidsetEnumeration(java.util.Enumeration enu)voidsetIterator(java.util.Iterator iterator)voidsetMax(int max)voidsetName(java.lang.String name)voidsetSkip(int skip)voidsetType(java.lang.String type)- 
Methods inherited from class javax.servlet.jsp.tagext.BodyTagSupport
doEndTag, doInitBody, getBodyContent, getPreviousOut, release, setBodyContent 
- 
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValue 
 - 
 
 - 
 
- 
- 
Field Detail
- 
REVISION
public static final java.lang.String REVISION
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
setCollection
public void setCollection(java.util.Collection collection)
 
- 
setArray
public void setArray(java.lang.Object[] array)
 
- 
setIterator
public void setIterator(java.util.Iterator iterator)
 
- 
setEnumeration
public void setEnumeration(java.util.Enumeration enu)
 
- 
setName
public void setName(java.lang.String name)
 
- 
setCounter
public void setCounter(java.lang.String counterName)
 
- 
setMax
public void setMax(int max)
 
- 
setSkip
public void setSkip(int skip)
 
- 
setType
public void setType(java.lang.String type)
 
- 
doStartTag
public int doStartTag() throws javax.servlet.jsp.JspException- Specified by:
 doStartTagin interfacejavax.servlet.jsp.tagext.Tag- Overrides:
 doStartTagin classjavax.servlet.jsp.tagext.BodyTagSupport- Throws:
 javax.servlet.jsp.JspException
 
- 
doAfterBody
public int doAfterBody() throws javax.servlet.jsp.JspException- Specified by:
 doAfterBodyin interfacejavax.servlet.jsp.tagext.IterationTag- Overrides:
 doAfterBodyin classjavax.servlet.jsp.tagext.BodyTagSupport- Throws:
 javax.servlet.jsp.JspException
 
 - 
 
 -