/** * See page 88 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.creational.abstract_factory; /** * Defines a product object to be created by the corresponsing * concrete factory. Implements the AbstractProduct interface. */ public class ProductB1 implements AbstractProductB { }