/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as; /** * 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 IAsTextScanner { /** * Sets the text that must be scanned. */ public void setText(String text); /** * Returns the next token found in the text. */ public org.reuseware.air.language.abstractsyntax.resource.as.IAsTextToken getNextToken(); }