public double getTotaalPrijs() { bedrag = 0; for (MenuItem item : bestelling.getItems()) { bedrag = bedrag + item.getPrijs(); } return bedrag; }
public String getOutput() { output = ""; for (MenuItem item : bestelling.getItems()) { output = output + "€" + f.format(item.getPrijs()) + " " + item.getNaam()+ "\n"; } return output; }