1 // $ANTLR 2.7.2: "ValidWhenParser.g" -> "ValidWhenParser.java"$
2
3 /*
4 * $Id: ValidWhenParserTokenTypes.java 504715 2007-02-07 22:10:26Z bayard $
5 *
6 * Licensed to the Apache Software Foundation (ASF) under one
7 * or more contributor license agreements. See the NOTICE file
8 * distributed with this work for additional information
9 * regarding copyright ownership. The ASF licenses this file
10 * to you under the Apache License, Version 2.0 (the
11 * "License"); you may not use this file except in compliance
12 * with the License. You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing,
17 * software distributed under the License is distributed on an
18 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19 * KIND, either express or implied. See the License for the
20 * specific language governing permissions and limitations
21 * under the License.
22 */
23
24 package org.apache.struts.validator.validwhen;
25
26 import java.util.Stack;
27 import org.apache.commons.validator.util.ValidatorUtils;
28
29
30 public interface ValidWhenParserTokenTypes {
31 int EOF = 1;
32 int NULL_TREE_LOOKAHEAD = 3;
33 int DECIMAL_LITERAL = 4;
34 int HEX_LITERAL = 5;
35 int OCTAL_LITERAL = 6;
36 int STRING_LITERAL = 7;
37 int IDENTIFIER = 8;
38 int LBRACKET = 9;
39 int RBRACKET = 10;
40 int LITERAL_null = 11;
41 int THIS = 12;
42 int LPAREN = 13;
43 int RPAREN = 14;
44 int ANDSIGN = 15;
45 int ORSIGN = 16;
46 int EQUALSIGN = 17;
47 int GREATERTHANSIGN = 18;
48 int GREATEREQUALSIGN = 19;
49 int LESSTHANSIGN = 20;
50 int LESSEQUALSIGN = 21;
51 int NOTEQUALSIGN = 22;
52 int WS = 23;
53 }