Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/objectstyle/cayenne/wocompat/parser/ParserConstants.java


1   /* Generated By:JavaCC: Do not edit this line. ParserConstants.java */
2   package org.objectstyle.cayenne.wocompat.parser;
3   
4   public interface ParserConstants {
5   
6     int EOF = 0;
7     int INT = 5;
8     int FLOAT = 6;
9     int STRING = 14;
10    int QUOTED_STRING = 27;
11  
12    int DEFAULT = 0;
13    int WithinQuotedString = 1;
14  
15    String[] tokenImage = {
16      "<EOF>",
17      "\" \"",
18      "\"\\r\"",
19      "\"\\n\"",
20      "\"\\t\"",
21      "<INT>",
22      "<FLOAT>",
23      "\"=\"",
24      "\"(\"",
25      "\")\"",
26      "\"{\"",
27      "\"}\"",
28      "\",\"",
29      "\";\"",
30      "<STRING>",
31      "\"\\\"\"",
32      "<token of kind 16>",
33      "\"\\\\\\\\\"",
34      "\"\\\\a\"",
35      "\"\\\\b\"",
36      "\"\\\\t\"",
37      "\"\\\\n\"",
38      "\"\\\\v\"",
39      "\"\\\\f\"",
40      "\"\\\\\\\"\"",
41      "<token of kind 25>",
42      "<token of kind 26>",
43      "\"\\\"\"",
44    };
45  
46  }