goldengine.java
Interface ActionConstants

All Known Implementing Classes:
GOLDParser

public interface ActionConstants

-------------------------------------------------------------------------------------------
Source File: ActionConstants.java
Author: Matthew Hawkins
Description: Set of Constants associated with what Action should be performed. Do NOT change the numbers!
-------------------------------------------------------------------------------------------
Revision List

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

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


Field Summary
static int actionAccept
          Input successfully parsed
static int actionError
          Programmars see this often!
static int actionGoto
          Goto to a state on reduction
static int actionReduce
          Reduce by a specified rule
static int actionShift
          Shift a symbol and goto a state
 

Field Detail

actionShift

public static final int actionShift
Shift a symbol and goto a state

actionReduce

public static final int actionReduce
Reduce by a specified rule

actionGoto

public static final int actionGoto
Goto to a state on reduction

actionAccept

public static final int actionAccept
Input successfully parsed

actionError

public static final int actionError
Programmars see this often!