KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > directory > ldapstudio > browser > core > model > schema > parser > SchemaTokenTypes


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

20
21 // $ANTLR 2.7.5 (20050128): "schema.g" -> "SchemaParser.java"$
22
package org.apache.directory.ldapstudio.browser.core.model.schema.parser;
23
24
25 import java.io.*;
26 import java.util.*;
27
28 import org.apache.directory.ldapstudio.browser.core.model.schema.*;
29
30
31 public interface SchemaTokenTypes
32 {
33     int EOF = 1;
34
35     int NULL_TREE_LOOKAHEAD = 3;
36
37     int WHSP = 4;
38
39     int LPAR = 5;
40
41     int RPAR = 6;
42
43     int QUOTE = 7;
44
45     int DOLLAR = 8;
46
47     int LBRACKET = 9;
48
49     int RBRACKET = 10;
50
51     int LEN = 11;
52
53     int USAGE_USERAPPLICATIONS = 12;
54
55     int USAGE_DIRECTORYOPERATION = 13;
56
57     int USAGE_DISTRIBUTEDOPERATION = 14;
58
59     int USAGE_DSAOPERATION = 15;
60
61     int STARTNUMERICOID = 16;
62
63     int NAME = 17;
64
65     int DESC = 18;
66
67     int SUP = 19;
68
69     int MUST = 20;
70
71     int MAY = 21;
72
73     int EQUALITY = 22;
74
75     int ORDERING = 23;
76
77     int SUBSTR = 24;
78
79     int SYNTAX = 25;
80
81     int USAGE = 26;
82
83     int APPLIES = 27;
84
85     int X = 28;
86
87     int SINGLE_VALUE = 29;
88
89     int COLLECTIVE = 30;
90
91     int NO_USER_MODIFICATION = 31;
92
93     int OBSOLETE = 32;
94
95     int ABSTRACT = 33;
96
97     int STRUCTURAL = 34;
98
99     int AUXILIARY = 35;
100
101     int VALUES = 36;
102
103     int VALUE = 37;
104
105     int UNQUOTED_STRING = 38;
106
107     int QUOTED_STRING = 39;
108 }
109
Popular Tags