001package headfirst.templatemethod.simplebarista; 002 003public class Barista { 004 005 public static void main(String[] args) { 006 Tea tea = new Tea(); 007 Coffee coffee = new Coffee(); 008 System.out.println("Making tea..."); 009 tea.prepareRecipe(); 010 System.out.println("Making coffee..."); 011 coffee.prepareRecipe(); 012 } 013}