001 /* Generated By:JavaCC: Do not edit this line. VersionParserConstants.java */
002 /*
003 * Copyright (c) 2009 The JOMC Project
004 * Copyright (c) 2005 Christian Schulte <cs@jomc.org>
005 * All rights reserved.
006 *
007 * Redistribution and use in source and binary forms, with or without
008 * modification, are permitted provided that the following conditions
009 * are met:
010 *
011 * o Redistributions of source code must retain the above copyright
012 * notice, this list of conditions and the following disclaimer.
013 *
014 * o Redistributions in binary form must reproduce the above copyright
015 * notice, this list of conditions and the following disclaimer in
016 * the documentation and/or other materials provided with the
017 * distribution.
018 *
019 * THIS SOFTWARE IS PROVIDED BY THE JOMC PROJECT AND CONTRIBUTORS "AS IS"
020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
022 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE JOMC PROJECT OR
023 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
024 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
025 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
026 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
027 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
028 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
029 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
030 *
031 * $Id: VersionParser.jj 733 2009-10-05 17:22:57Z schulte2005 $
032 *
033 */
034 package org.jomc.util;
035
036
037 /**
038 * Token literal values and constants.
039 * Generated by org.javacc.parser.OtherFilesGen#start()
040 */
041 public interface VersionParserConstants {
042
043 /** End of File. */
044 int EOF = 0;
045 /** RegularExpression Id. */
046 int INTEGER = 1;
047 /** RegularExpression Id. */
048 int SEPARATOR = 2;
049 /** RegularExpression Id. */
050 int IDENTIFIER = 3;
051
052 /** Lexical state. */
053 int DEFAULT = 0;
054
055 /** Literal token values. */
056 String[] tokenImage = {
057 "<EOF>",
058 "<INTEGER>",
059 "<SEPARATOR>",
060 "<IDENTIFIER>",
061 };
062
063 }