Uses of Class
de.upb.swt.mcie.parser.token.Token

Packages that use Token
de.upb.swt.mcie.parser This package implements a parser and compiler for formulas and models. 
de.upb.swt.mcie.parser.token This package implements the tokens for the scanner and parser of package de.upb.swt.mcie.parser
 

Uses of Token in de.upb.swt.mcie.parser
 

Fields in de.upb.swt.mcie.parser declared as Token
private  Token Scanner.current
          The current token.
private  Token Scanner.previous
          The previous token.
private  Token ParseException.token
          The token causing the parse error.
 

Methods in de.upb.swt.mcie.parser that return Token
 Token Scanner.getNextToken()
          Returns the next token.
 

Constructors in de.upb.swt.mcie.parser with parameters of type Token
ParseException(Token token)
          Constructs a ParseException for the token.
 

Uses of Token in de.upb.swt.mcie.parser.token
 

Subclasses of Token in de.upb.swt.mcie.parser.token
 class BinOp
          Class implementing a token for a binary operation.
 class Brack
          Implements the token for brackets.
 class Const
          Implements a token for a constant.
 class End
          Implements the token for the end of a character sequence.
 class Id
          Implements the token for an identifier.
 class Inval
          Implements an invalid token.
 class Prime
          Implements the token for the prime symbol attached to an identifier.
 class Sep
          Implements a token for a separator.
 class UnOp
          Implements the token for an unary operation.