Uses of Package
jelan.elan.parser.token

Packages that use jelan.elan.parser.token
jelan.elan.expression   
jelan.elan.parser This package is responsible for parsing the language Elan. 
jelan.elan.parser.token   
 

Classes in jelan.elan.parser.token used by jelan.elan.expression
IdentifierToken
          Represents an identifier (a variable name)
 

Classes in jelan.elan.parser.token used by jelan.elan.parser
Token
          currently this is a flag interface
 

Classes in jelan.elan.parser.token used by jelan.elan.parser.token
CharToken
          A token represented by a single character, e.g., '*', ';', '[' and so on; the method equals compares a CharToken as equal to another CharToken encapsulating the same character.
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.
IdentifierToken
          Represents an identifier (a variable name)
NumberToken
          Represents a number (using doublevalues).
ReservedToken
          Represents a reserved word
Token
          currently this is a flag interface
VariableToken
          Represents a variable