/** * See page 108 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.creational.factory_method; /** * Overrides the factory method to return an * instance of a ConcreteProduct. */ public class ConcreteCreator extends Creator { protected Product factoryMethod() { return new ConcreteProduct(); } }