/** * <copyright> * </copyright> * * */ package robot.resource.robot; /** * A common interface for scanners to be used by EMFText. A scanner is initialized * with a text and delivers a sequence of tokens. */ public interface IRobotTextScanner { /** * Sets the text that must be scanned. */ public void setText(String text); /** * Returns the next token found in the text. */ public robot.resource.robot.IRobotTextToken getNextToken(); }