/** * See page 245 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.behavioral.interpreter; /** * Contains information that's global to the interpreter. */ public interface Context { }