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