Advertisement
LoganBlackisle

testapp

Jun 14th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package prep_29_iteratorpattern;
  2.  
  3. public class TestApp {
  4.  
  5. public static void main(String[] args) {
  6. PancakeHouseMenu pancakeHouseMenu = new PancakeHouseMenu();
  7. DinerMenu dinerMenu = new DinerMenu();
  8.  
  9. Waitress waitress = new Waitress(pancakeHouseMenu, dinerMenu);
  10.  
  11. waitress.printMenu();
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement