1 3 30 package net.sf.jasperreports.olap.mapping; 31 32 import java.util.List ; 33 import java.util.ArrayList ; 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 |