8990919293949596979899100101
} protected List getData() { List list = new ArrayList(); for (int x = 0; x < 10; x++) { PersonBean bean = new PersonBean(); bean.setId(x); bean.setName("Rob Harrop"); bean.setStreet("foo"); list.add(bean); } return list; }
86878889909192939495969798
} protected List<Object> getData() { List<Object> list = new ArrayList<Object>(); for (int x = 0; x < 10; x++) { PersonBean bean = new PersonBean(); bean.setId(x); bean.setName("Rob Harrop"); bean.setStreet("foo"); list.add(bean); } return list; }