1 16 17 package org.apache.commons.betwixt; 18 19 import java.util.ArrayList ; 20 import java.util.List ; 21 22 27 public class PersonListBean { 28 29 private ArrayList people = new ArrayList (); 30 31 public PersonListBean() {} 32 33 public List getPersonList() { 34 return people; 35 } 36 37 public void addPerson(PersonBean person) { 38 people.add(person); 39 } 40 41 } 42 | Popular Tags |