// Textbook fragment 02.12 public interface Person { public boolean equalTo (Person other); // is this the same person? public String getName(); // get this person's name public int getAge(); // get this person's age }