01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: //----------------------------------------------------
19: // The following code was generated by CUP v0.11a beta 20060102
20: // Wed Dec 20 21:02:26 ART 2006
21: //----------------------------------------------------
22: package javax.swing.text.html.parser;
23:
24: /** CUP generated interface containing symbol constants. */
25: interface ParserSym {
26: /* terminals */
27: public static final int TAG_CLOSE = 4;
28: public static final int TAG_COMM_CLOSE = 10;
29: public static final int EOFTK = 25;
30: public static final int TAG_SLASH_CLOSE = 9;
31: public static final int ATTR_NAME = 17;
32: public static final int LEXERR = 24;
33: public static final int MUDECL = 22;
34: public static final int TAG_OPEN = 3;
35: public static final int COMM = 8;
36: public static final int ATTRVAL_NMTK = 19;
37: public static final int ATTRVAL_NUM = 21;
38: public static final int EMPTY_TAG = 11;
39: public static final int MUDECL_CONTENT = 23;
40: public static final int LEXERR_EXPECTED_TAG_NAME = 27;
41: public static final int EQUALS = 5;
42: public static final int END_TAG_NAME = 13;
43: public static final int DQM = 6;
44: public static final int EOF = 0;
45: public static final int TAG_NAME = 14;
46: public static final int error = 1;
47: public static final int SYNC = 2;
48: public static final int ATTRVAL_NUMTK = 20;
49: public static final int TEXT = 16;
50: public static final int SQM = 7;
51: public static final int EOF_LITERAL = 26;
52: public static final int COMM_CONTENT = 15;
53: public static final int ATTRVAL_LIT = 18;
54: public static final int TAG_OPEN_EXM = 12;
55: }
|