Package elan.parser.token

Interface Summary
Token currently this is a flag interface
 

Class Summary
AssignmentToken  
CharToken A token represented by a single character, e.g., '*', ';', '[', and so on equals compares a CharToken as equal to another CharToken encapsulating the same character
CharTokenFactory Factory for generating CharToken objects ensuring that only one of any specific CharToken object is created (enforcing CharToken singleton-ness per char value)
DotToken  
EOFToken This represents an end-of-file token Uses the singleton pattern since there's no reason to have more than one such token.
EOLToken This represents an end-of-line token Uses the singleton pattern since there's no reason to have more than one such token.
EqualToken  
IdentifierToken  
IfToken  
LeftBracketToken  
LeftParenToken  
MinusToken  
NumberToken Represents a number (using double) Using equals, a NumberToken object compares as true only to another NumberToken object with the same value
PlusToken  
PrintToken  
RepeatToken  
ReservedToken  
RightBracketToken  
RightParenToken  
SlashToken  
StarToken  
SumToken  
TokenFactory Manages what tokens the StreamTokenizer recognizes.
ToToken  
VariableToken