View Javadoc

1   /* Generated By:JavaCC: Do not edit this line. BaseUrlParserConstants.java */
2   package fr.in2p3.jsaga.generated.parser;
3   
4   
5   /**
6    * Token literal values and constants.
7    * Generated by org.javacc.parser.OtherFilesGen#start()
8    */
9   public interface BaseUrlParserConstants {
10  
11    /** End of File. */
12    int EOF = 0;
13    /** RegularExpression Id. */
14    int STAR = 6;
15    /** RegularExpression Id. */
16    int SEP_ALIAS = 7;
17    /** RegularExpression Id. */
18    int SEP_SCHEME = 8;
19    /** RegularExpression Id. */
20    int SEP_DOMAIN = 9;
21    /** RegularExpression Id. */
22    int SEP_PORT = 10;
23    /** RegularExpression Id. */
24    int SEP_DIR = 11;
25    /** RegularExpression Id. */
26    int NUMBER = 12;
27    /** RegularExpression Id. */
28    int NAME = 13;
29    /** RegularExpression Id. */
30    int DIGIT = 14;
31    /** RegularExpression Id. */
32    int LETTER = 15;
33  
34    /** Lexical state. */
35    int DEFAULT = 0;
36  
37    /** Literal token values. */
38    String[] tokenImage = {
39      "<EOF>",
40      "\" \"",
41      "\"\\t\"",
42      "\"\\n\"",
43      "\"\\r\"",
44      "\"\\f\"",
45      "\"*\"",
46      "\"->\"",
47      "\"://\"",
48      "\".\"",
49      "\":\"",
50      "\"/\"",
51      "<NUMBER>",
52      "<NAME>",
53      "<DIGIT>",
54      "<LETTER>",
55      "\"[\"",
56      "\"]\"",
57      "<token of kind 18>",
58    };
59  
60  }