/** Interface for a person. */
public interface Person {
  /** Compare if this Person is equal to another */
  public boolean equalTo (Person other);
  /** Return the name of this Person */
  public String getName();
  /** Return the age of this Person */
  public int getAge();
}