01: /* Generated By:JavaCC: Do not edit this line. ExpressionParserConstants.java */
02: package org.concern.model.parser;
03:
04: public interface ExpressionParserConstants {
05:
06: int EOF = 0;
07: int IDENTIFIER_CHAR = 1;
08: int WHITESPACE = 2;
09: int AND = 3;
10: int OR = 4;
11: int NOT = 5;
12: int LPAREN = 6;
13: int RPAREN = 7;
14:
15: int DEFAULT = 0;
16:
17: String[] tokenImage = { "<EOF>", "<IDENTIFIER_CHAR>",
18: "<WHITESPACE>", "<AND>", "<OR>", "<NOT>", "<LPAREN>",
19: "<RPAREN>", };
20:
21: }
|