goldengine.java
Interface SymbolTypeConstants

All Known Implementing Classes:
GOLDParser, Rule, Symbol

public interface SymbolTypeConstants

-------------------------------------------------------------------------------------------
Source File: SymbolTypeConstants.java
Author: Matthew Hawkins
Description: A set of constants associated with what type a symbol is. Do NOT change these numbers!
-------------------------------------------------------------------------------------------
Revision List

      Author          Version         Description
      ------          -------         -----------
      MPH             1.0             First Issue

-------------------------------------------------------------------------------------------
IMPORT: NONE
-------------------------------------------------------------------------------------------


Field Summary
static int symbolTypeCommentEnd
          Comment end
static int symbolTypeCommentLine
          Comment line
static int symbolTypeCommentStart
          Comment start
static int symbolTypeEnd
          End character (EOF)
static int symbolTypeError
          Error symbol
static int symbolTypeNonterminal
          Normal nonterminal
static int symbolTypeTerminal
          Normal terminal
static int symbolTypeWhitespace
          Type of terminal
 

Field Detail

symbolTypeNonterminal

public static final int symbolTypeNonterminal
Normal nonterminal

symbolTypeTerminal

public static final int symbolTypeTerminal
Normal terminal

symbolTypeWhitespace

public static final int symbolTypeWhitespace
Type of terminal

symbolTypeEnd

public static final int symbolTypeEnd
End character (EOF)

symbolTypeCommentStart

public static final int symbolTypeCommentStart
Comment start

symbolTypeCommentEnd

public static final int symbolTypeCommentEnd
Comment end

symbolTypeCommentLine

public static final int symbolTypeCommentLine
Comment line

symbolTypeError

public static final int symbolTypeError
Error symbol