//============================================================================== // tribble/io/SymbolTableI.java //------------------------------------------------------------------------------ package tribble.io; // System imports import java.lang.Exception; import java.lang.String; // Local imports // (None) /******************************************************************************* * Generic symbol table interface. * *

* This marker interface is used to implement any kind of symbol table, which is * produced as the result of parsing tokens from a lexical source text stream. * * @version $Revision: 1.1 $ $Date: 2001/04/21 20:27:43 $ * @since 2001-04-21 * @author * David R. Tribble, * david@tribble.com *
* Copyright * ©2001-2002 by David R. Tribble, all rights reserved. *
* Permission is granted to freely use and distribute this source code * provided that the original copyright and authorship notices remain * intact. * * @see SymbolI * @see ParserWithSymbolTableI */ public interface SymbolTableI { // Identification /** Revision information. */ static final String REV = "@(#)tribble/io/SymbolTableI.java $Revision: 1.1 $ $Date: 2001/04/21 20:27:43 $\n"; // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // Public methods // (None) } // End SymbolTableI.java