/** * See page 153 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.structural.bridge; /** * Implements the Implementor interface and defines its * conrete implementation. */ public class ConcreteImplementorB implements Implementor { public void operation() { } }