/** * See page 236 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.behavioral.command; /** * Implementation of the Receiver interface. */ public class ConcreteReceiver implements Receiver { public void action() { } }