Uses of Interface
net.sf.parcinj.TokenType

Packages that use TokenType
net.sf.parcinj ParCinJ core classes. 
 

Uses of TokenType in net.sf.parcinj
 

Classes in net.sf.parcinj that implement TokenType
 class NormalToken
          Token type representing plain text which is neither a key word nor a delimiter but for example a variable name.
 class QuotedText
          Token type representing quoted text.
 class TerminalSymbolType
          Class representing a token type which is a terminal symbol.
 

Methods in net.sf.parcinj that return TokenType
 TokenType Token.getType()
          Returns the type of this token.
 

Methods in net.sf.parcinj with parameters of type TokenType
protected  java.lang.String TerminalSymbolByType.createFailure(TokenType expectedType)
          Returns failure text for the specified token type.
 

Constructors in net.sf.parcinj with parameters of type TokenType
TerminalSymbolByType(TokenType tokenType)
          Creates an instance for the specified token type.
Token(TokenType type, java.lang.String text, int lineNumber, int columnNumber)
          Creates an instance for the specified chunk of text.