public class BBItem { protected static int nextID = 0; protected int ID = nextID++; public String toString () { return "Item: " + ID; } }