/** * See page 108 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.creational.factory_method; /** * Implements the Product interface. */ public class ConcreteProduct implements Product { }