A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / ParserBasicInformation.java
index e5c59b5..c6d308f 100644 (file)
  *******************************************************************************/
 package net.sourceforge.phpdt.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...*/
+/*
+ * 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
-      NT_OFFSET         = 308,
-      SCOPE_UBOUND      = -1,
-      SCOPE_SIZE        = 0,
-      LA_STATE_OFFSET   = 17759,
-      MAX_LA            = 1,
-      NUM_RULES         = 437,
-      NUM_TERMINALS     = 104,
-      NUM_NON_TERMINALS = 204,
-      NUM_SYMBOLS       = 308,
-      START_STATE       = 16034,
-      EOFT_SYMBOL       = 114,
-      EOLT_SYMBOL       = 105,
-      ACCEPT_ACTION     = 17758,
-      ERROR_ACTION      = 17759;
+       public final static int NT_OFFSET = 308, SCOPE_UBOUND = -1, SCOPE_SIZE = 0,
+                       LA_STATE_OFFSET = 17759, MAX_LA = 1, NUM_RULES = 437,
+                       NUM_TERMINALS = 104, NUM_NON_TERMINALS = 204, NUM_SYMBOLS = 308,
+                       START_STATE = 16034, EOFT_SYMBOL = 114, EOLT_SYMBOL = 105,
+                       ACCEPT_ACTION = 17758, ERROR_ACTION = 17759;
 }