/* Generated By:JavaCC: Do not edit this line. ParenthesisConstants.java */
public interface ParenthesisConstants {

  int EOF = 0;
  int LBRACE = 5;
  int RBRACE = 6;
  int LPAREN = 7;
  int RPAREN = 8;
  int LBRACKET = 9;
  int RBRACKET = 10;

  int DEFAULT = 0;

  String[] tokenImage = {
    "<EOF>",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "\"{\"",
    "\"}\"",
    "\"(\"",
    "\")\"",
    "\"[\"",
    "\"]\"",
  };

}
