/** * See page 276 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.behavioral.mediator; /** * Defines an interface for communicating with Colleague objects. */ public interface Mediator { }