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

Packages that use Concatenation
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 Concatenation in com.inxar.syntacs.grammar.regular
 

Classes in com.inxar.syntacs.grammar.regular that implement Concatenation
 class REConcatenation
          Standard Concatenation implementation.
 

Methods in com.inxar.syntacs.grammar.regular that return Concatenation
 Concatenation REGrammar.newConcatenation(RegularExpression left, RegularExpression right)
           
 

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

Methods in org.inxar.syntacs.grammar.regular that return Concatenation
 Concatenation RegularGrammar.newConcatenation(RegularExpression left, RegularExpression right)
          Allocates and returns a new Concatenation expression from the given left and right RegularExpressions.