rleland     01/03/31 14:27:30

  Modified:    src/share/org/apache/struts/taglib/logic IterateTag.java
  Log:
  It now supports Enumeration as collection type
  
  Revision  Changes    Path
  1.9       +7 -7      
jakarta-struts/src/share/org/apache/struts/taglib/logic/IterateTag.java
  
  Index: IterateTag.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/logic/IterateTag.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- IterateTag.java   2001/03/31 21:29:37     1.8
  +++ IterateTag.java   2001/03/31 22:27:30     1.9
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/logic/IterateTag.java,v 
1.8 2001/03/31 21:29:37 rleland Exp $
  - * $Revision: 1.8 $
  - * $Date: 2001/03/31 21:29:37 $
  + * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/logic/IterateTag.java,v 
1.9 2001/03/31 22:27:30 rleland Exp $
  + * $Revision: 1.9 $
  + * $Date: 2001/03/31 22:27:30 $
    *
    * ====================================================================
    *
  @@ -83,12 +83,12 @@
   /**
    * Custom tag that iterates the elements of a collection, which can be
    * either an attribute or the property of an attribute.  The collection
  - * can be any of the following:  an array of objects, an Iterator,
  - * a Collection (which includes Lists, Sets and Vectors), or a Map
  - * (which includes Hashtables) whose elements will be iterated over.
  + * can be any of the following:  an array of objects, an Enumeration,
  + * an Iterator, a Collection (which includes Lists, Sets and Vectors),
  + * or a Map (which includes Hashtables) whose elements will be iterated over.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.8 $ $Date: 2001/03/31 21:29:37 $
  + * @version $Revision: 1.9 $ $Date: 2001/03/31 22:27:30 $
    */
   
   public class IterateTag extends BodyTagSupport {
  
  
  

Reply via email to