Uses of Interface
org.inxar.syntacs.grammar.context_free.ContextFreeSet

Packages that use ContextFreeSet
com.inxar.syntacs.automaton.pushdown Defines classes which implement pushdown automata and their construction. 
com.inxar.syntacs.grammar.context_free Defines classes which implement context-free grammars. 
com.inxar.syntacs.translator.lr Defines classes which implement LR-specific translation machinery. 
org.inxar.syntacs.automaton.pushdown Declares interfaces which model and support pushdown automata used in shift-reduce parsing. 
org.inxar.syntacs.grammar.context_free Declares interfaces which model context-free grammars. 
 

Uses of ContextFreeSet in com.inxar.syntacs.automaton.pushdown
 

Methods in com.inxar.syntacs.automaton.pushdown with parameters of type ContextFreeSet
 DPA LALR1Constructor.construct(ContextFreeSet grammar)
           
 DPA ArrayDPAConstructor.construct(ContextFreeSet grammar)
           
 DPA LR1Constructor.construct(ContextFreeSet grammar)
           
 

Constructors in com.inxar.syntacs.automaton.pushdown with parameters of type ContextFreeSet
ArrayDPAConstructor(ContextFreeSet grammar)
           
 

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

Classes in com.inxar.syntacs.grammar.context_free that implement ContextFreeSet
 class CFGrammar
          Standard ContextFreeGrammar implementation.
 

Methods in com.inxar.syntacs.grammar.context_free that return ContextFreeSet
 ContextFreeSet CFGrammar.compile()
           
 

Uses of ContextFreeSet in com.inxar.syntacs.translator.lr
 

Constructors in com.inxar.syntacs.translator.lr with parameters of type ContextFreeSet
ProxyLRTranslatorGrammar(LRTranslatorGrammar g, ContextFreeSet c)
           
 

Uses of ContextFreeSet in org.inxar.syntacs.automaton.pushdown
 

Methods in org.inxar.syntacs.automaton.pushdown with parameters of type ContextFreeSet
 DPA DPAConstructor.construct(ContextFreeSet grammar)
          Constructs a DPA.
 

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

Methods in org.inxar.syntacs.grammar.context_free that return ContextFreeSet
 ContextFreeSet ContextFreeGrammar.compile()
          When the construction and setup of the context free language elements is complete, compile() returns a ContextFreeSet object which can then be used to construct a DPA.