/** * See page 306 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.behavioral.state; /** * Each subclass implements a behavior associated with * a state of the Context. */ public class ConcreteStateA implements State { public void handle() { } }