001package headfirst.factory.pizzaaf;
002
003public class Eggplant implements Veggies {
004
005        public String toString() {
006                return "Eggplant";
007        }
008}