Home | History | Annotate | Download | only in issue8

Lines Matching refs:person

23 public class Person implements Serializable {
29 public Person() {
32 public Person(String firstName, String lastName, int hatSize) {
64 if (object instanceof Person) {
65 Person person = (Person) object;
66 return firstName.equals(person.firstName) && lastName.equals(person.lastName)
67 && hatSize == person.hatSize;