KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > steadystate > css > parser > SACParserConstants


1 /* Generated By:JavaCC: Do not edit this line. SACParserConstants.java */
2 package com.steadystate.css.parser;
3
4 public interface SACParserConstants {
5
6   int EOF = 0;
7   int S = 1;
8   int LBRACE = 5;
9   int RBRACE = 6;
10   int COMMA = 7;
11   int DOT = 8;
12   int SEMICOLON = 9;
13   int COLON = 10;
14   int ASTERISK = 11;
15   int SLASH = 12;
16   int PLUS = 13;
17   int MINUS = 14;
18   int EQUALS = 15;
19   int GT = 16;
20   int LSQUARE = 17;
21   int RSQUARE = 18;
22   int HASH = 19;
23   int STRING = 20;
24   int RROUND = 21;
25   int URL = 22;
26   int URI = 23;
27   int CDO = 24;
28   int CDC = 25;
29   int INCLUDES = 26;
30   int DASHMATCH = 27;
31   int IMPORT_SYM = 28;
32   int PAGE_SYM = 29;
33   int MEDIA_SYM = 30;
34   int FONT_FACE_SYM = 31;
35   int CHARSET_SYM = 32;
36   int ATKEYWORD = 33;
37   int IMPORTANT_SYM = 34;
38   int INHERIT = 35;
39   int EMS = 36;
40   int EXS = 37;
41   int LENGTH_PX = 38;
42   int LENGTH_CM = 39;
43   int LENGTH_MM = 40;
44   int LENGTH_IN = 41;
45   int LENGTH_PT = 42;
46   int LENGTH_PC = 43;
47   int ANGLE_DEG = 44;
48   int ANGLE_RAD = 45;
49   int ANGLE_GRAD = 46;
50   int TIME_MS = 47;
51   int TIME_S = 48;
52   int FREQ_HZ = 49;
53   int FREQ_KHZ = 50;
54   int DIMEN = 51;
55   int PERCENTAGE = 52;
56   int NUMBER = 53;
57   int RGB = 54;
58   int FUNCTION = 55;
59   int IDENT = 56;
60   int NAME = 57;
61   int NUM = 58;
62   int UNICODERANGE = 59;
63   int RANGE = 60;
64   int Q16 = 61;
65   int Q15 = 62;
66   int Q14 = 63;
67   int Q13 = 64;
68   int Q12 = 65;
69   int Q11 = 66;
70   int NMSTART = 67;
71   int NMCHAR = 68;
72   int STRING1 = 69;
73   int STRING2 = 70;
74   int NONASCII = 71;
75   int ESCAPE = 72;
76   int NL = 73;
77   int UNICODE = 74;
78   int HNUM = 75;
79   int H = 76;
80   int UNKNOWN = 77;
81
82   int DEFAULT = 0;
83   int COMMENT = 1;
84
85   String JavaDoc[] tokenImage = {
86     "<EOF>",
87     "<S>",
88     "\"/*\"",
89     "\"*/\"",
90     "<token of kind 4>",
91     "\"{\"",
92     "\"}\"",
93     "\",\"",
94     "\".\"",
95     "\";\"",
96     "\":\"",
97     "\"*\"",
98     "\"/\"",
99     "\"+\"",
100     "\"-\"",
101     "\"=\"",
102     "\">\"",
103     "\"[\"",
104     "\"]\"",
105     "<HASH>",
106     "<STRING>",
107     "\")\"",
108     "<URL>",
109     "<URI>",
110     "\"<!--\"",
111     "\"-->\"",
112     "\"~=\"",
113     "\"|=\"",
114     "\"@import\"",
115     "\"@page\"",
116     "\"@media\"",
117     "\"@font-face\"",
118     "\"@charset\"",
119     "<ATKEYWORD>",
120     "<IMPORTANT_SYM>",
121     "\"inherit\"",
122     "<EMS>",
123     "<EXS>",
124     "<LENGTH_PX>",
125     "<LENGTH_CM>",
126     "<LENGTH_MM>",
127     "<LENGTH_IN>",
128     "<LENGTH_PT>",
129     "<LENGTH_PC>",
130     "<ANGLE_DEG>",
131     "<ANGLE_RAD>",
132     "<ANGLE_GRAD>",
133     "<TIME_MS>",
134     "<TIME_S>",
135     "<FREQ_HZ>",
136     "<FREQ_KHZ>",
137     "<DIMEN>",
138     "<PERCENTAGE>",
139     "<NUMBER>",
140     "\"rgb(\"",
141     "<FUNCTION>",
142     "<IDENT>",
143     "<NAME>",
144     "<NUM>",
145     "<UNICODERANGE>",
146     "<RANGE>",
147     "<Q16>",
148     "<Q15>",
149     "<Q14>",
150     "<Q13>",
151     "<Q12>",
152     "\"?\"",
153     "<NMSTART>",
154     "<NMCHAR>",
155     "<STRING1>",
156     "<STRING2>",
157     "<NONASCII>",
158     "<ESCAPE>",
159     "<NL>",
160     "<UNICODE>",
161     "<HNUM>",
162     "<H>",
163     "<UNKNOWN>",
164   };
165
166 }
167
Popular Tags