|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SimpleDataLanguageParserConstants.java | - | - | - | - |
|
1 |
/* Generated By: SimpleDataLanguageParser.jj,v 1.3 2004/06/25 20&JavaCC: Do not edit this line. SimpleDataLanguageParserConstants.java */
|
|
2 |
// Copyright 2004 The Apache Software Foundation
|
|
3 |
//
|
|
4 |
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
5 |
// you may not use this file except in compliance with the License.
|
|
6 |
// You may obtain a copy of the License at
|
|
7 |
//
|
|
8 |
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9 |
//
|
|
10 |
// Unless required by applicable law or agreed to in writing, software
|
|
11 |
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12 |
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13 |
// See the License for the specific language governing permissions and
|
|
14 |
// limitations under the License.
|
|
15 |
|
|
16 |
///CLOVER:OFF
|
|
17 |
package org.apache.hivemind.sdl.parser;
|
|
18 |
|
|
19 |
public interface SimpleDataLanguageParserConstants { |
|
20 |
|
|
21 |
int EOF = 0;
|
|
22 |
int NUMERIC_LITERAL = 5;
|
|
23 |
int SIMPLE_ID = 6;
|
|
24 |
int COMPLEX_ID = 7;
|
|
25 |
int QUOTED_LITERAL = 8;
|
|
26 |
int EXTENDED_LITERAL = 9;
|
|
27 |
int SYMBOL = 10;
|
|
28 |
int DIGIT = 11;
|
|
29 |
int SIGN = 12;
|
|
30 |
int OPAREN = 13;
|
|
31 |
int CPAREN = 14;
|
|
32 |
int OBRACE = 15;
|
|
33 |
int CBRACE = 16;
|
|
34 |
int EQ = 17;
|
|
35 |
int QUOTE = 18;
|
|
36 |
int DOT = 19;
|
|
37 |
|
|
38 |
int DEFAULT = 0;
|
|
39 |
int EXTRACTING_QUOTED_LITERAL = 1;
|
|
40 |
int SINGLE_LINE_COMMENT = 2;
|
|
41 |
int MULTILINE_COMMENT = 3;
|
|
42 |
|
|
43 |
String[] tokenImage = { |
|
44 |
"<EOF>",
|
|
45 |
"\" \"",
|
|
46 |
"\"\\t\"",
|
|
47 |
"\"\\n\"",
|
|
48 |
"\"\\r\"",
|
|
49 |
"<NUMERIC_LITERAL>",
|
|
50 |
"<SIMPLE_ID>",
|
|
51 |
"<COMPLEX_ID>",
|
|
52 |
"<QUOTED_LITERAL>",
|
|
53 |
"<EXTENDED_LITERAL>",
|
|
54 |
"<SYMBOL>",
|
|
55 |
"<DIGIT>",
|
|
56 |
"<SIGN>",
|
|
57 |
"\"(\"",
|
|
58 |
"\")\"",
|
|
59 |
"\"{\"",
|
|
60 |
"\"}\"",
|
|
61 |
"\"=\"",
|
|
62 |
"\"\\\"\"",
|
|
63 |
"\".\"",
|
|
64 |
"\"//\"",
|
|
65 |
"\"/*\"",
|
|
66 |
"\"\\\"\"",
|
|
67 |
"<token of kind 23>",
|
|
68 |
"<token of kind 24>",
|
|
69 |
"\"*/\"",
|
|
70 |
"<token of kind 26>",
|
|
71 |
}; |
|
72 |
|
|
73 |
} |
|
74 |
|
|