001package headfirst.factory.pizzafm;
002
003public class ChicagoStyleClamPizza extends Pizza {
004        public ChicagoStyleClamPizza() {
005                name = "Chicago Style Clam Pizza";
006                dough = "Extra Thick Crust Dough";
007                sauce = "Plum Tomato Sauce";
008
009                toppings.add("Shredded Mozzarella Cheese");
010                toppings.add("Frozen Clams from Chesapeake Bay");
011        }
012
013        void cut() {
014                System.out.println("Cutting the pizza into square slices");
015        }
016}