/** * See page 108 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.creational.factory_method; /** * Defines the interface of objects the factory method creates. */ public interface Product { }