/** * See page 98 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.creational.builder; /** * Represents a piece of the complex object under construction. */ public interface Part { }