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

Packages that use RegularSet
com.inxar.syntacs.automaton.finite Defines classes which implement determinitic finite automata and their construction. 
com.inxar.syntacs.grammar.regular Defines classes which implement regular-expression based grammars. 
org.inxar.syntacs.automaton.finite Declares interfaces which model and support deterministic finite automata. 
org.inxar.syntacs.grammar.regular Declares interfaces which model regular-expression based grammars. 
 

Uses of RegularSet in com.inxar.syntacs.automaton.finite
 

Methods in com.inxar.syntacs.automaton.finite with parameters of type RegularSet
 DFA TreeDFAConstructor.construct(RegularSet regset)
           
 

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

Classes in com.inxar.syntacs.grammar.regular that implement RegularSet
 class REGrammar
          Standard RegularGrammar implementation.
 

Methods in com.inxar.syntacs.grammar.regular that return RegularSet
 RegularSet REGrammar.compile()
           
 

Uses of RegularSet in org.inxar.syntacs.automaton.finite
 

Methods in org.inxar.syntacs.automaton.finite with parameters of type RegularSet
 DFA DFAConstructor.construct(RegularSet grammar)
          Constructs a DFA from the given RegularSet.
 

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

Methods in org.inxar.syntacs.grammar.regular that return RegularSet
 RegularSet RegularGrammar.compile()
          When token construction is complete, compile() compiles and returns a RegularSet object which can be used for generation of DFA's, for example.