KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > components > xpointer > parser > XPointerFrameworkParserConstants


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.cocoon.components.xpointer.parser;
17
18 public interface XPointerFrameworkParserConstants {
19
20   int EOF = 0;
21   int Letter = 1;
22   int BaseChar = 2;
23   int Ideographic = 3;
24   int CombiningChar = 4;
25   int UnicodeDigit = 5;
26   int Extender = 6;
27   int NCName = 7;
28   int WS = 8;
29   int QName = 9;
30   int LBRACE = 10;
31   int RBRACE = 11;
32   int CIRC_LBRACE = 12;
33   int CIRC_RBRACE = 13;
34   int DOUBLE_CIRC = 14;
35   int NormalChar = 15;
36
37   int DEFAULT = 0;
38   int IN_SCHEME = 1;
39
40   String JavaDoc[] tokenImage = {
41     "<EOF>",
42     "<Letter>",
43     "<BaseChar>",
44     "<Ideographic>",
45     "<CombiningChar>",
46     "<UnicodeDigit>",
47     "<Extender>",
48     "<NCName>",
49     "<WS>",
50     "<QName>",
51     "\"(\"",
52     "\")\"",
53     "\"^(\"",
54     "\"^)\"",
55     "\"^^\"",
56     "<NormalChar>",
57   };
58
59 }
60
Popular Tags