JspFragment body = getJspBody(); if (body != null) { Iterator i = items.iterator(); while (i.hasNext()) { Object currValue = i.next(); getJspContext().setAttribute(var, currValue); body.invoke(null); } }
this.items = items;
this.var = var;