/** * This class represents a person The person has a first name, last name and an * year of birth */ public class Person { /** The first name for this Person. */ private String firstName; /** The last name for this Person. */ private String lastName; /** The year this Person was born. */ private int yearOfBirth; /** * Constructs a Person object and initializes it to the given first name, last * name and year of birth * * @param firstName the first name of this person * @param lastName the last name of this person * @param yearOfBirth the year of birth of this person */ public Person(String firstName, String lastName, int yearOfBirth) { this.firstName = firstName; this.lastName = lastName; this.yearOfBirth = yearOfBirth; } /** * Get the first name of this person * * @return the first name of this person */ public String getFirstName() { return this.firstName; } /** * Return the last name of this person * * @return the last name of this person */ public String getLastName() { return this.lastName; } /** * Return the year of birth of this person * * @return the year of birth of this person */ public int getYearOfBirth() { return this.yearOfBirth; } }