Exemplo n.º 1
0
 public static void printInfo(Coffee c)
 {
     Debug.WriteLine("Cost: " + c.getCost() + "; Ingredients: " + c.getIngredients());
 }
Exemplo n.º 2
0
 public override String getIngredients()
 {
     return(decoratedCoffee.getIngredients());
 }