parser
Class ExpressionParser.LexicalAnalizer

java.lang.Object
  |
  +--parser.ExpressionParser.LexicalAnalizer
Direct Known Subclasses:
ExpressionParser.Default.LexicalAnalizer
Enclosing class:
ExpressionParser

public abstract static class ExpressionParser.LexicalAnalizer
extends java.lang.Object

Generates a sequence of tokens.

Since:
notavaCC 1.0

Constructor Summary
ExpressionParser.LexicalAnalizer()
           
 
Method Summary
abstract  ExpressionParser.Token next()
          Returns the next token in the sequence, or null if there is no token.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExpressionParser.LexicalAnalizer

public ExpressionParser.LexicalAnalizer()
Method Detail

next

public abstract ExpressionParser.Token next()
                                     throws ExpressionParser.ParseException
Returns the next token in the sequence, or null if there is no token.

Returns:
the next token in the sequence, or null if there is no token.
ExpressionParser.ParseException
Since:
notavaCC 1.0