View Javadoc

1   /* Generated By:JJTree&JavaCC: Do not edit this line. CommandLineParserConstants.java */
2   package org.apache.geronimo.gshell.parser;
3   
4   
5   /**
6    * Token literal values and constants.
7    * Generated by org.javacc.parser.OtherFilesGen#start()
8    */
9   public interface CommandLineParserConstants {
10  
11    /** End of File. */
12    int EOF = 0;
13    /** RegularExpression Id. */
14    int COMMENT = 6;
15    /** RegularExpression Id. */
16    int STRING = 7;
17    /** RegularExpression Id. */
18    int OPAQUE_STRING = 8;
19    /** RegularExpression Id. */
20    int QUOTED_STRING = 9;
21    /** RegularExpression Id. */
22    int SEMICOLON = 10;
23    /** RegularExpression Id. */
24    int PIPE = 11;
25  
26    /** Lexical state. */
27    int DEFAULT = 0;
28  
29    /** Literal token values. */
30    String[] tokenImage = {
31      "<EOF>",
32      "\" \"",
33      "\"\\t\"",
34      "\"\\n\"",
35      "\"\\r\"",
36      "\"\\f\"",
37      "<COMMENT>",
38      "<STRING>",
39      "<OPAQUE_STRING>",
40      "<QUOTED_STRING>",
41      "\";\"",
42      "\"|\"",
43    };
44  
45  }