Struts Question.
Hello Friends. I want to know meaning of the following definition.Please help me and make me understand what exactly the sentence is saying.
The question is based on STRUTS logic tag.
The tag is used to iterate over a named collection-which contains a Collection,Enumerator,Iterator,Map,or Array.
So my Question is, what is the meaning of iterate over a named collection ?
[399 byte] By [
radhika743] at [2007-11-11 10:15:57]

# 1 Re: Struts Question.
Named collection means a Collection (http://java.sun.com/javase/6/docs/api/java/util/Collection.html) object which has been specified:
* As a runtime expression specified as the value of the collection attribute.
*As a JSP bean specified by the name attribute.
* As the property, specified by the property, of the JSP bean specified by the name attribute.
Iterating means looping over each element of the collection.
Details are mentioned in the Struts documentation.