1
2 package org.apache.geronimo.gshell.parser;
3
4
5
6
7
8
9 public interface CommandLineParserConstants {
10
11
12 int EOF = 0;
13
14 int COMMENT = 6;
15
16 int STRING = 7;
17
18 int OPAQUE_STRING = 8;
19
20 int QUOTED_STRING = 9;
21
22 int SEMICOLON = 10;
23
24 int PIPE = 11;
25
26
27 int DEFAULT = 0;
28
29
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 }