1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / compiler / IScanner.java
index f3c6ff6..b06f048 100644 (file)
@@ -11,6 +11,8 @@
 
 package net.sourceforge.phpdt.core.compiler;
 
+import net.sourceforge.phpdt.core.compiler.ITerminalSymbols.TokenName;
+
 /**
  * Definition of a Java scanner, as returned by the <code>ToolFactory</code>.
  * The scanner is responsible for tokenizing a given source, providing
@@ -123,7 +125,7 @@ public interface IScanner {
         *             in case a lexical error was detected while reading the
         *             current token
         */
-       int getNextToken() throws InvalidInputException;
+       TokenName getNextToken() throws InvalidInputException;
 
        /**
         * Answers the original source being processed (not a copy of it).