package class6_3_InnerDecoratorChallengeRecipe_withProblem_start; public interface AbstractRecipe { void displayRecipe(); void addIngredient(Ingredient item); double getMultiple(); }