/** * See page 177 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.structural.facade; /** * Implement subsystem functionality. Handle work assigned * by the Facade object. Have no knowledge of the facade; that * is, they keep no references to it. */ public class Subsystem1 { public void doWork() { } }