| java.lang.Object org.griphyn.cPlanner.classes.PoolConfigScanner
PoolConfigScanner | class PoolConfigScanner (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 Vöckler |
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. | public PoolConfigToken | nextToken() Obtains the next token from the input stream. |
PoolConfigScanner | public PoolConfigScanner(Reader reader) throws IOException(Code) | | Starts to scan the given stream.
Parameters: reader - the reader stream from which we are reading the site catalog. |
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. |
|
|