001/* Generated By:JJTree&JavaCC: Do not edit this line. MatrixParserConstants.java */
002/* Parser for matrices written in matlab format.
003
004 Copyright (c) 1998-2008 The Regents of the University of California.
005 All rights reserved.
006 Permission is hereby granted, without written agreement and without
007 license or royalty fees, to use, copy, modify, and distribute this
008 software and its documentation for any purpose, provided that the above
009 copyright notice and the following two paragraphs appear in all copies
010 of this software.
011
012 IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
013 FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
014 ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
015 THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
016 SUCH DAMAGE.
017
018 THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
019 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
020 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
021 PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
022 CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
023 ENHANCEMENTS, OR MODIFICATIONS.
024
025                                        PT_COPYRIGHT_VERSION_2
026                                        COPYRIGHTENDKEY
027*/
028package ptolemy.data.expr;
029
030/**
031 * Token literal values and constants.
032 * Generated by org.javacc.parser.OtherFilesGen#start()
033 */
034public interface MatrixParserConstants {
035
036    /** End of File. */
037    int EOF = 0;
038    /** RegularExpression Id. */
039    int CONSTANT = 5;
040    /** RegularExpression Id. */
041    int FLOAT = 6;
042    /** RegularExpression Id. */
043    int INTEGER = 7;
044    /** RegularExpression Id. */
045    int DIGIT = 8;
046    /** RegularExpression Id. */
047    int NAME = 9;
048    /** RegularExpression Id. */
049    int NATURAL = 10;
050    /** RegularExpression Id. */
051    int SIGN = 11;
052    /** RegularExpression Id. */
053    int COMMENT = 12;
054
055    /** Lexical state. */
056    int DEFAULT = 0;
057
058    /** Literal token values. */
059    String[] tokenImage = { "<EOF>", "\" \"", "\"\\t\"", "\"\\n\"", "\"\\r\"",
060            "<CONSTANT>", "<FLOAT>", "<INTEGER>", "<DIGIT>", "<NAME>",
061            "<NATURAL>", "<SIGN>", "<COMMENT>", "\"[\"", "\";\"", "\"]\"",
062            "\",\"", };
063
064}