KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > struts > validator > validwhen > ValidWhenParserTokenTypes


1 // $ANTLR 2.7.2: "validWhenParser.g" -> "ValidWhenParser.java"$
2

3 /*
4  * $Id: ValidWhenParserTokenTypes.java 54929 2004-10-16 16:38:42Z germuska $
5  *
6  * Copyright 2003,2004 The Apache Software Foundation.
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */

20
21 package org.apache.struts.validator.validwhen;
22
23 public interface ValidWhenParserTokenTypes {
24     int EOF = 1;
25     int NULL_TREE_LOOKAHEAD = 3;
26     int DECIMAL_LITERAL = 4;
27     int HEX_LITERAL = 5;
28     int OCTAL_LITERAL = 6;
29     int STRING_LITERAL = 7;
30     int IDENTIFIER = 8;
31     int LBRACKET = 9;
32     int RBRACKET = 10;
33     int LITERAL_null = 11;
34     int THIS = 12;
35     int LPAREN = 13;
36     int RPAREN = 14;
37     int ANDSIGN = 15;
38     int ORSIGN = 16;
39     int EQUALSIGN = 17;
40     int GREATERTHANSIGN = 18;
41     int GREATEREQUALSIGN = 19;
42     int LESSTHANSIGN = 20;
43     int LESSEQUALSIGN = 21;
44     int NOTEQUALSIGN = 22;
45     int WS = 23;
46 }
47
Popular Tags