001package headfirst.factory.pizzaaf;
002
003public class ThickCrustDough implements Dough {
004        public String toString() {
005                return "ThickCrust style extra thick crust dough";
006        }
007}