X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/compiler/IScanner.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/compiler/IScanner.java index f3c6ff6..b06f048 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/compiler/IScanner.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/compiler/IScanner.java @@ -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 ToolFactory. * 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).