1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
/* Generated By:JavaCC: Do not edit this line. ParserConstants.java */
package org.w3c.flute.parser;
public interface ParserConstants {
int EOF = 0;
int S = 1;
int CDO = 5;
int CDC = 6;
int LBRACE = 7;
int RBRACE = 8;
int DASHMATCH = 9;
int INCLUDES = 10;
int EQ = 11;
int PLUS = 12;
int MINUS = 13;
int COMMA = 14;
int SEMICOLON = 15;
int PRECEDES = 16;
int DIV = 17;
int LBRACKET = 18;
int RBRACKET = 19;
int ANY = 20;
int DOT = 21;
int LPARAN = 22;
int RPARAN = 23;
int COLON = 24;
int NONASCII = 25;
int H = 26;
int UNICODE = 27;
int ESCAPE = 28;
int NMSTART = 29;
int NMCHAR = 30;
int STRINGCHAR = 31;
int D = 32;
int NAME = 33;
int STRING = 34;
int IDENT = 35;
int NUMBER = 36;
int _URL = 37;
int URL = 38;
int PERCENTAGE = 39;
int PT = 40;
int MM = 41;
int CM = 42;
int PC = 43;
int IN = 44;
int PX = 45;
int EMS = 46;
int EXS = 47;
int DEG = 48;
int RAD = 49;
int GRAD = 50;
int MS = 51;
int SECOND = 52;
int HZ = 53;
int KHZ = 54;
int DIMEN = 55;
int HASH = 56;
int IMPORT_SYM = 57;
int MEDIA_SYM = 58;
int CHARSET_SYM = 59;
int PAGE_SYM = 60;
int FONT_FACE_SYM = 61;
int ATKEYWORD = 62;
int IMPORTANT_SYM = 63;
int RANGE0 = 64;
int RANGE1 = 65;
int RANGE2 = 66;
int RANGE3 = 67;
int RANGE4 = 68;
int RANGE5 = 69;
int RANGE6 = 70;
int RANGE = 71;
int UNI = 72;
int UNICODERANGE = 73;
int FUNCTION = 74;
int UNKNOWN = 75;
int DEFAULT = 0;
int IN_COMMENT = 1;
String[] tokenImage = {
"<EOF>",
"<S>",
"\"/*\"",
"\"*/\"",
"<token of kind 4>",
"\"<!--\"",
"\"-->\"",
"\"{\"",
"\"}\"",
"\"|=\"",
"\"~=\"",
"\"=\"",
"\"+\"",
"\"-\"",
"\",\"",
"\";\"",
"\">\"",
"\"/\"",
"\"[\"",
"\"]\"",
"\"*\"",
"\".\"",
"\")\"",
"\"(\"",
"\":\"",
"<NONASCII>",
"<H>",
"<UNICODE>",
"<ESCAPE>",
"<NMSTART>",
"<NMCHAR>",
"<STRINGCHAR>",
"<D>",
"<NAME>",
"<STRING>",
"<IDENT>",
"<NUMBER>",
"<_URL>",
"<URL>",
"<PERCENTAGE>",
"<PT>",
"<MM>",
"<CM>",
"<PC>",
"<IN>",
"<PX>",
"<EMS>",
"<EXS>",
"<DEG>",
"<RAD>",
"<GRAD>",
"<MS>",
"<SECOND>",
"<HZ>",
"<KHZ>",
"<DIMEN>",
"<HASH>",
"\"@import\"",
"\"@media\"",
"\"@charset\"",
"\"@page\"",
"\"@font-face\"",
"<ATKEYWORD>",
"<IMPORTANT_SYM>",
"<RANGE0>",
"<RANGE1>",
"<RANGE2>",
"<RANGE3>",
"<RANGE4>",
"<RANGE5>",
"<RANGE6>",
"<RANGE>",
"<UNI>",
"<UNICODERANGE>",
"<FUNCTION>",
"<UNKNOWN>",
};
}
|