| java.lang.Object org.griphyn.vdl.annotation.QueryScanner
QueryScanner | class QueryScanner (Code) | | Implements the scanner for reserved words and other tokens that are
generated from the input stream. This class is module-local on
purpose.
author: Jens-S. Vöckler version: $Revision: 50 $ |
Method Summary | |
public int | getLineNumber() Obtains the current line number in the input stream from the outside. | public boolean | hasMoreTokens() Checks for the availability of more input.
true, if there is more to read, false for EOF. | public String | nextToken() Obtains the next token from the input stream. |
getLineNumber | public int getLineNumber()(Code) | | Obtains the current line number in the input stream from the outside.
the current line number. |
hasMoreTokens | public boolean hasMoreTokens() throws IOException(Code) | | Checks for the availability of more input.
true, if there is more to read, false for EOF. |
|
|