View Javadoc
1 /* 2 * Demosys. 3 * 4 * Terms of license - http://opensource.org/licenses/apachepl.php 5 */ 6 package org.demosys.web.iteration; 7 import java.util.ArrayList; 8 import java.util.List; 9 10 /*** 11 */ 12 public class IterationViewList { 13 private List _iterations = new ArrayList(); 14 15 public List getIterations() { 16 return _iterations; 17 } 18 19 20 public IterationView getIteration(int idx) { 21 return (IterationView)_iterations.get(idx); 22 } 23 24 25 public int getIterationCount() { 26 return _iterations.size(); 27 } 28 29 30 public void setIterations(List iterations) { 31 _iterations = iterations; 32 } 33 }

This page was automatically generated by Maven