/*****************************************************************/ /* Copyright 2013 Code Strategies */ /* This code may be freely used and distributed in any project. */ /* However, please do not remove this credit if you publish this */ /* code in paper or electronic form, such as on a web site. */ /*****************************************************************/ package com.cakes; public class TacoMeal extends Meal { @Override public void prepareIngredients() { System.out.println("Getting ground beef and shells"); } @Override public void cook() { System.out.println("Cooking ground beef in pan"); } @Override public void eat() { System.out.println("The tacos are tasty"); } @Override public void cleanUp() { System.out.println("Doing the dishes"); } }