/** * Objects that implement this interface can be referenced (though not uniquely) * by their "names," which are composed Strings. * @author tomr55 * */ public interface Nameable { public String getFirstName(); public String getLastName(); public String getMiddleName(); public String getTitle(); }