removed Makefile; lifted repo/org.ibex.tool/src/ to src/
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / parser / ParserBasicInformation.java
diff --git a/src/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java b/src/org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation.java
new file mode 100644 (file)
index 0000000..bdb077b
--- /dev/null
@@ -0,0 +1,36 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jdt.internal.compiler.parser;
+
+/*An interface that contains static declarations for some basic information
+ about the parser such as the number of rules in the grammar, the starting state, etc...*/
+
+public interface ParserBasicInformation {
+
+       public final static int
+      ERROR_SYMBOL      = 105,
+      MAX_NAME_LENGTH   = 36,
+      NUM_STATES        = 597,
+      NT_OFFSET         = 105,
+      SCOPE_UBOUND      = 63,
+      SCOPE_SIZE        = 64,
+      LA_STATE_OFFSET   = 5981,
+      MAX_LA            = 1,
+      NUM_RULES         = 433,
+      NUM_TERMINALS     = 105,
+      NUM_NON_TERMINALS = 203,
+      NUM_SYMBOLS       = 308,
+      START_STATE       = 529,
+      EOFT_SYMBOL       = 54,
+      EOLT_SYMBOL       = 54,
+      ACCEPT_ACTION     = 5980,
+      ERROR_ACTION      = 5981;
+}