1 /* Generated By:JavaCC: Do not edit this line. ServiceFileParserConstants.java */ 2 /* 3 * Copyright 2010-2011 The 99 Software Foundation 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 package org.nnsoft.commons.bspi; 18 19 20 /** 21 * Token literal values and constants. 22 * Generated by org.javacc.parser.OtherFilesGen#start() 23 */ 24 public interface ServiceFileParserConstants { 25 26 /** End of File. */ 27 int EOF = 0; 28 /** RegularExpression Id. */ 29 int SINGLE_LINE_COMMENT = 7; 30 /** RegularExpression Id. */ 31 int QUALIFIED_NAME = 9; 32 /** RegularExpression Id. */ 33 int IDENTIFIER = 10; 34 /** RegularExpression Id. */ 35 int LETTER = 11; 36 /** RegularExpression Id. */ 37 int DIGIT = 12; 38 39 /** Lexical state. */ 40 int DEFAULT = 0; 41 /** Lexical state. */ 42 int IN_SINGLE_LINE_COMMENT = 1; 43 44 /** Literal token values. */ 45 String[] tokenImage = { 46 "<EOF>", 47 "\" \"", 48 "\"\\t\"", 49 "\"\\n\"", 50 "\"\\r\"", 51 "\"\\f\"", 52 "\"#\"", 53 "<SINGLE_LINE_COMMENT>", 54 "<token of kind 8>", 55 "<QUALIFIED_NAME>", 56 "<IDENTIFIER>", 57 "<LETTER>", 58 "<DIGIT>", 59 }; 60 61 }