KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > jasperreports > olap > mapping > MappingParserTokenTypes


1 // $ANTLR 2.7.5 (20050128): "mapping.g" -> "MappingParser.java"$
2

3 /*
4  * ============================================================================
5  * GNU Lesser General Public License
6  * ============================================================================
7  *
8  * JasperReports - Free Java report-generating library.
9  * Copyright (C) 2001-2006 JasperSoft Corporation http://www.jaspersoft.com
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with this library; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
24  *
25  * JasperSoft Corporation
26  * 303 Second Street, Suite 450 North
27  * San Francisco, CA 94107
28  * http://www.jaspersoft.com
29  */

30 package net.sf.jasperreports.olap.mapping;
31
32 import java.util.List JavaDoc;
33 import java.util.ArrayList JavaDoc;
34
35 import net.sf.jasperreports.olap.mapping.*;
36
37 public interface MappingParserTokenTypes {
38     int EOF = 1;
39     int NULL_TREE_LOOKAHEAD = 3;
40     int LITERAL_Axis = 4;
41     int LPAREN = 5;
42     int RPAREN = 6;
43     int LITERAL_Columns = 7;
44     int LITERAL_Rows = 8;
45     int LITERAL_Pages = 9;
46     int LITERAL_Chapters = 10;
47     int LITERAL_Sections = 11;
48     int LITERAL_Data = 12;
49     int LITERAL_FormattedData = 13;
50     int COMMA = 14;
51     int QMARK = 15;
52     int POINT = 16;
53     int INT = 17;
54     int MONDRNAME = 18;
55     int MONDRIDX = 19;
56     int NAME = 20;
57     int PLUS = 21;
58     int MINUS = 22;
59     int STAR = 23;
60     int WS = 24;
61     int MONDRCH = 25;
62     int DIGIT = 26;
63     int LETTER = 27;
64 }
65
Popular Tags