/** * See page 245 of DESIGN PATTERNS [1995]. * Implemented by Blueprint Technologies, Inc. */ /** * Package */ package com.blueprint.patterns.gamma.behavioral.interpreter; /** * Implements an Interpret operation associated with terminal * symbols in the grammar. */ public class TerminalExpression implements AbstractExpression { public void interpret( Context context ) { } }