Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1f4e3ad9086eb484e4514992ff80691696e8af36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*******************************************************************************
 * Copyright (c) 2005 BEA Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     BEA Systems - initial implementation
 *     
 *******************************************************************************/
/* Generated By:JJTree&JavaCC: Do not edit this line. JSPELParserConstants.java */
package org.eclipse.jst.jsp.core.internal.java.jspel;

public interface JSPELParserConstants {

  int EOF = 0;
  int INTEGER_LITERAL = 5;
  int FLOATING_POINT_LITERAL = 6;
  int EXPONENT = 7;
  int STRING_LITERAL = 8;
  int BADLY_ESCAPED_STRING_LITERAL = 9;
  int TRUE = 10;
  int FALSE = 11;
  int NULL = 12;
  int DOT = 13;
  int GT1 = 14;
  int GT2 = 15;
  int LT1 = 16;
  int LT2 = 17;
  int EQ1 = 18;
  int EQ2 = 19;
  int LE1 = 20;
  int LE2 = 21;
  int GE1 = 22;
  int GE2 = 23;
  int NEQ1 = 24;
  int NEQ2 = 25;
  int LPAREN = 26;
  int RPAREN = 27;
  int COMMA = 28;
  int COLON = 29;
  int LBRACKET = 30;
  int RBRACKET = 31;
  int PLUS = 32;
  int MINUS = 33;
  int MULTIPLY = 34;
  int DIVIDE1 = 35;
  int DIVIDE2 = 36;
  int MODULUS1 = 37;
  int MODULUS2 = 38;
  int NOT1 = 39;
  int NOT2 = 40;
  int AND1 = 41;
  int AND2 = 42;
  int OR1 = 43;
  int OR2 = 44;
  int EMPTY = 45;
  int COND = 46;
  int IDENTIFIER = 47;
  int IMPL_OBJ_START = 48;
  int LETTER = 49;
  int DIGIT = 50;

  int DEFAULT = 0;

  String[] tokenImage = {
    "<EOF>",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "<INTEGER_LITERAL>",
    "<FLOATING_POINT_LITERAL>",
    "<EXPONENT>",
    "<STRING_LITERAL>",
    "<BADLY_ESCAPED_STRING_LITERAL>",
    "\"true\"",
    "\"false\"",
    "\"null\"",
    "\".\"",
    "\">\"",
    "\"gt\"",
    "\"<\"",
    "\"lt\"",
    "\"==\"",
    "\"eq\"",
    "\"<=\"",
    "\"le\"",
    "\">=\"",
    "\"ge\"",
    "\"!=\"",
    "\"ne\"",
    "\"(\"",
    "\")\"",
    "\",\"",
    "\":\"",
    "\"[\"",
    "\"]\"",
    "\"+\"",
    "\"-\"",
    "\"*\"",
    "\"/\"",
    "\"div\"",
    "\"%\"",
    "\"mod\"",
    "\"not\"",
    "\"!\"",
    "\"and\"",
    "\"&&\"",
    "\"or\"",
    "\"||\"",
    "\"empty\"",
    "\"?\"",
    "<IDENTIFIER>",
    "\"#\"",
    "<LETTER>",
    "<DIGIT>",
  };

}

Back to the top