Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public abstract class PizzaStore {
  2.  
  3. public Pizza orderPizza(String type) {
  4. Pizza pizza = createPizza(type);
  5.  
  6. pizza.prepare();
  7. pizza.bake();
  8. pizza.cut();
  9. pizza.box();
  10.  
  11. return pizza;
  12. }
  13.  
  14. abstract Pizza createPizza(String type);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement