1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package net.sf.beep4j.internal.message.contenttype;
18
19 public interface ContentTypeParserConstants {
20
21 int EOF = 0;
22 int WS = 6;
23 int COMMENT = 8;
24 int QUOTEDSTRING = 19;
25 int DIGITS = 20;
26 int ATOKEN = 21;
27 int QUOTEDPAIR = 22;
28 int ANY = 23;
29
30 int DEFAULT = 0;
31 int INCOMMENT = 1;
32 int NESTED_COMMENT = 2;
33 int INQUOTEDSTRING = 3;
34
35 String[] tokenImage = {
36 "<EOF>",
37 "\"\\r\"",
38 "\"\\n\"",
39 "\"/\"",
40 "\";\"",
41 "\"=\"",
42 "<WS>",
43 "\"(\"",
44 "\")\"",
45 "<token of kind 9>",
46 "\"(\"",
47 "<token of kind 11>",
48 "<token of kind 12>",
49 "\"(\"",
50 "\")\"",
51 "<token of kind 15>",
52 "\"\\\"\"",
53 "<token of kind 17>",
54 "<token of kind 18>",
55 "\"\\\"\"",
56 "<DIGITS>",
57 "<ATOKEN>",
58 "<QUOTEDPAIR>",
59 "<ANY>",
60 };
61
62 }