added -J option to preserve unmodified files in preexisting jarfile
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / parser / ParserBasicInformation.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-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 = 108,
18                 MAX_NAME_LENGTH = 41,
19                 NUM_STATES = 953,
20
21                 NT_OFFSET = 108,
22                 SCOPE_UBOUND = 132,
23                 SCOPE_SIZE = 133,
24                 LA_STATE_OFFSET = 12548,
25                 MAX_LA = 1,
26                 NUM_RULES = 691,
27                 NUM_TERMINALS = 108,
28                 NUM_NON_TERMINALS = 307,
29                 NUM_SYMBOLS = 415,
30                 START_STATE = 1129,
31                 EOFT_SYMBOL = 67,
32                 EOLT_SYMBOL = 67,
33                 ACCEPT_ACTION = 12547,
34                 ERROR_ACTION = 12548;
35 }