import java.sql.*; public class ReportData { public String firstName; private String lastName; private int age; private Date birthDay; public ReportData(String firstName, String lastName, int age, Date birthDay) { this.firstName = firstName; this.lastName = lastName; this.age = age; this.birthDay = birthDay; } public String getLastName() { return lastName; } public int getAge() {return age;} public Date getBirthDay() {return birthDay;} }
SAP BusinessObjects http://www.sap.com/sapbusinessobjects/ Support services http://service.sap.com/bosap-support/ Product Documentation on the Web http://help.sap.com/ |