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