Guest User

Untitled

a guest
Dec 10th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. int i=1;
  2.  
  3. if(wrap.getFilling().equals(null)){
  4. System.out.println("NO FILLINGS");
  5. } else {
  6. for (wrap w: wrap.getFilling()) {
  7. System.out.println("FILLING " + i + ": " + w.getName() + " COST: £" + w.getCost());
  8. i++;
  9. }
  10. }
Add Comment
Please, Sign In to add comment