001package headfirst.templatemethod.barista;
002
003public class Tea extends CaffeineBeverage {
004        public void brew() {
005                System.out.println("Steeping the tea");
006        }
007        public void addCondiments() {
008                System.out.println("Adding Lemon");
009        }
010}