1 /* Generated By:JavaCC: Do not edit this line. VersionParserConstants.java */ 2 /* 3 * Copyright (C) Christian Schulte, 2005-206 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * o Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 13 * o Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 15 * the documentation and/or other materials provided with the 16 * distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 19 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 20 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, 22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * 29 * $JOMC: VersionParser.jj 4613 2012-09-22 10:07:08Z schulte $ 30 * 31 */ 32 package org.jomc.util; 33 34 35 /** 36 * Token literal values and constants. 37 * Generated by org.javacc.parser.OtherFilesGen#start() 38 */ 39 public interface VersionParserConstants { 40 41 /** End of File. */ 42 int EOF = 0; 43 /** RegularExpression Id. */ 44 int INTEGER = 1; 45 /** RegularExpression Id. */ 46 int SEPARATOR = 2; 47 /** RegularExpression Id. */ 48 int IDENTIFIER = 3; 49 50 /** Lexical state. */ 51 int DEFAULT = 0; 52 53 /** Literal token values. */ 54 String[] tokenImage = { 55 "<EOF>", 56 "<INTEGER>", 57 "<SEPARATOR>", 58 "<IDENTIFIER>", 59 }; 60 61 }