EDIT: Here is the code for the toppings. I'm not sure how to print the names out in the case that more than one topping is selected.
public double getToppingCost() { double toppingCost = 0.0; if (creamCheese.isSelected()) toppingCost += CREAM_CHEESE; if (butter.isSelected()) toppingCost += BUTTER; if (peachJelly.isSelected()) toppingCost += PEACH_JELLY; if (blueberryJam.isSelected()) toppingCost += BLUEBERRY_JAM; if (nutella.isSelected()) toppingCost += NUTELLA; return toppingCost; }