Uses of Interface
org.inxar.syntacs.grammar.Token

Packages that use Token
com.inxar.syntacs.grammar.context_free Defines classes which implement context-free grammars. 
com.inxar.syntacs.grammar.regular Defines classes which implement regular-expression based grammars. 
org.inxar.syntacs.grammar.context_free Declares interfaces which model context-free grammars. 
org.inxar.syntacs.grammar.regular Declares interfaces which model regular-expression based grammars. 
 

Uses of Token in com.inxar.syntacs.grammar.context_free
 

Methods in com.inxar.syntacs.grammar.context_free that return Token
 Token CFTerminal.getToken()
           
 

Methods in com.inxar.syntacs.grammar.context_free with parameters of type Token
 Terminal CFGrammar.newTerminal(Token type)
           
 

Uses of Token in com.inxar.syntacs.grammar.regular
 

Methods in com.inxar.syntacs.grammar.regular that return Token
 Token REGrammar.getToken(int id)
           
 

Uses of Token in org.inxar.syntacs.grammar.context_free
 

Methods in org.inxar.syntacs.grammar.context_free that return Token
 Token Terminal.getToken()
          Returns the Token object upon which this Terminal takes its identity.
 

Methods in org.inxar.syntacs.grammar.context_free with parameters of type Token
 Terminal ContextFreeGrammar.newTerminal(Token type)
          Allocates and returns a new Terminal based on the given Token.
 

Uses of Token in org.inxar.syntacs.grammar.regular
 

Subinterfaces of Token in org.inxar.syntacs.grammar.regular
 interface RegularToken
          The RegularToken interface describes a Token which is specifically described using a RegularExpression.
 

Methods in org.inxar.syntacs.grammar.regular that return Token
 Token RegularSet.getToken(int id)
          Returns the Token with the given id.