/** This class represents a Person. * People have names. */ public class Person { private String name; /** Constructs a new Person given their name. */ public Person(String name) { this.name = name; } /** Returns the name of the Person. */ public String getName() { return this.name; } /** Returns a string representation of the Person. */ public String toString() { return this.name; } }