Examples of PersonBean


Examples of org.springframework.ui.jasperreports.PersonBean

  }

  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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.