KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > compiler > parser > ParserBasicInformation


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.compiler.parser;
12
13 /*An interface that contains static declarations for some basic information
14  about the parser such as the number of rules in the grammar, the starting state, etc...*/

15 public interface ParserBasicInformation {
16
17     int ERROR_SYMBOL = 110,
18         MAX_NAME_LENGTH = 41,
19         NUM_STATES = 956,
20
21         NT_OFFSET = 110,
22         SCOPE_UBOUND = 131,
23         SCOPE_SIZE = 132,
24         LA_STATE_OFFSET = 12794,
25         MAX_LA = 1,
26         NUM_RULES = 695,
27         NUM_TERMINALS = 110,
28         NUM_NON_TERMINALS = 309,
29         NUM_SYMBOLS = 419,
30         START_STATE = 767,
31         EOFT_SYMBOL = 68,
32         EOLT_SYMBOL = 68,
33         ACCEPT_ACTION = 12793,
34         ERROR_ACTION = 12794;
35 }
36
Popular Tags