/* holds information common to all products */ public class Apple { protected int price; protected int month; protected int year; public Apple(int p, int m, int y){ price = p; month = m; year = y; } public void printinfo() { System.out.println("Purchased in "+month+"/"+year+" for $"+price+"."); } }