Uses of Interface
org.inxar.syntacs.grammar.regular.RegularToken

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

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

Methods in com.inxar.syntacs.grammar.regular that return RegularToken
 RegularToken REExpressionTerminator.getToken()
           
 RegularToken REGrammar.newToken(int tokenID, String tokenName, RegularExpression re)
           
 RegularToken REGrammar.newToken(int tokenID, String tokenName, String re)
           
 

Constructors in com.inxar.syntacs.grammar.regular with parameters of type RegularToken
REExpressionTerminator(REGrammar grammar, int id, RegularToken token)
          Constructs the REExpressionTerminator on the given REGrammar, allocated ID number, and the RegularToken to which this ExpressionTerminator corresponds.
 

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

Methods in org.inxar.syntacs.grammar.regular that return RegularToken
 RegularToken RegularGrammar.newToken(int tokenID, String name, RegularExpression regex)
          Allocates and returns a new RegularToken mapping the given name to the given RegularExpression.
 RegularToken RegularGrammar.newToken(int tokenID, String name, String regex)
          Allocates a new RegularToken in this grammar having the given tokenID number, name, and regex.
 RegularToken ExpressionTerminator.getToken()
          Returns the Token which this ExpressionTerminator implies.