/** * See page 177 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.structural.decorator; /** * Defines an object to which additional responsibilities * can be attached. */ public class ConcreteComponent implements Component { public void operation() { // Do something real. } }