001/* Generated By:JavaCC: Do not edit this line. AnimTimeParserConstants.java */
002package com.kitfox.svg.animation.parser;
003
004
005/**
006 * Token literal values and constants.
007 * Generated by org.javacc.parser.OtherFilesGen#start()
008 */
009public interface AnimTimeParserConstants {
010
011  /** End of File. */
012  int EOF = 0;
013  /** RegularExpression Id. */
014  int LETTER = 6;
015  /** RegularExpression Id. */
016  int DIGIT = 7;
017  /** RegularExpression Id. */
018  int INTEGER = 8;
019  /** RegularExpression Id. */
020  int FLOAT = 9;
021  /** RegularExpression Id. */
022  int INDEFINITE = 10;
023  /** RegularExpression Id. */
024  int MOUSE_OVER = 11;
025  /** RegularExpression Id. */
026  int WHEN_NOT_ACTIVE = 12;
027  /** RegularExpression Id. */
028  int UNITS = 13;
029  /** RegularExpression Id. */
030  int IDENTIFIER = 14;
031
032  /** Lexical state. */
033  int DEFAULT = 0;
034
035  /** Literal token values. */
036  String[] tokenImage = {
037    "<EOF>",
038    "\" \"",
039    "\"\\t\"",
040    "\"\\n\"",
041    "\"\\r\"",
042    "\"\\f\"",
043    "<LETTER>",
044    "<DIGIT>",
045    "<INTEGER>",
046    "<FLOAT>",
047    "\"indefinite\"",
048    "\"mouseover\"",
049    "\"whenNotActive\"",
050    "<UNITS>",
051    "<IDENTIFIER>",
052    "\";\"",
053    "\"+\"",
054    "\"-\"",
055    "\":\"",
056    "\".\"",
057    "\"(\"",
058    "\")\"",
059  };
060
061}