/** * See page 141 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.structural.class_adapter; /** * Defines an existing interface that needs adapting. */ public class Adaptee { public void specificRequest() { } }