RE: Packaging Question - Include Source in Binary Distributions?

2001-04-24 Thread Gael Laurans
>From: "Iraklis Kourtidis" <[EMAIL PROTECTED]> >2) The source for the struts-example sample application (although not part >of the source code you're likely talking about) was to me the >most useful resource in understanding Struts. Any other example I found on >the web was highly confusing and

Re: Iterate over a bean full of beans?

2001-04-23 Thread Gael Laurans
= new Vector(); ... and a method returning an array of the vector's elements ... public Lot[] getLots() { Lot[] results = new Lot[lots.size()]; lots.copyInto(results); return results; } In the JSP I can use the iterate tag as follow : ... ... Hope this