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