public class PersonList { public Object person; public PersonList next; PersonList(Object p, PersonList next) { person = p; this.next = next; } public String toString() { if (next == null) return person.toString(); else return ("" + person.toString() + " " + next); } }