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;}
}|
Business Objects, an SAP company http://www.businessobjects.com/ Support services http://www.businessobjects.com/services/support/ Product Documentation on the Web http://support.businessobjects.com/documentation/ |