/* Generated By: CSCC: 4.0 (07/17/2009)  Do not edit this line. TheParserConstants.cs */
namespace edu.neu.ccs.demeterf.http.classes{


using System;
public class TheParserConstants {

  public const int EOF = 0;
  public const int TRUE = 19;
  public const int FALSE = 20;
  public const int INT = 21;
  public const int DOUBLE = 22;
  public const int EXPON = 23;
  public const int CHAR = 24;
  public const int STRING = 25;
  public const int TEXT = 26;
  public const int IDENT = 27;

  public const int DEFAULT = 0;

  public String[] tokenImage = {
    "<EOF>",
    "\"GET\"",
    "\"HEAD\"",
    "\"POST\"",
    "\"PUT\"",
    "\"DELETE\"",
    "\"TRACE\"",
    "\"CONNECT\"",
    "\"OPTIONS\"",
    "\"/\"",
    "\"HTTP/\"",
    "\":\"",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "\"\\r\\n\"",
    "<token of kind 17>",
    "<token of kind 18>",
    "\"true\"",
    "\"false\"",
    "<INT>",
    "<DOUBLE>",
    "<EXPON>",
    "<CHAR>",
    "<STRING>",
    "<TEXT>",
    "<IDENT>",
  };

}
}