// A list of items to buy where the id is the place to buy them public class ShoppingList extends ToDoList { public String toString() { String result = "Buy the following items at " + getId() + ":\n"; for(String item : this) result += " " + item + "\n"; return result; } }