/** * See page 153 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.structural.bridge; /** * Extends the interface defined by Abstraction. */ public class RefinedAbstraction extends Abstraction { public void operation() { super.operation(); } }