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