Uses of Interface
org.inxar.syntacs.automaton.pushdown.DPA

Packages that use DPA
com.inxar.syntacs.automaton.pushdown Defines classes which implement pushdown automata and their construction. 
org.inxar.syntacs.automaton.pushdown Declares interfaces which model and support pushdown automata used in shift-reduce parsing. 
 

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

Classes in com.inxar.syntacs.automaton.pushdown that implement DPA
 class ArrayDPA
          Concrete implementation of DPA which uses full-length array parse tables.
 class MesoArrayDPA
          Concrete DPA implementation which uses meso-array parse tables.
 

Methods in com.inxar.syntacs.automaton.pushdown that return DPA
 DPA Array2MesoArrayDPATransformer.transform(Object array_dpa)
          Transform the argument into a DPA.
 DPA LALR1Constructor.construct(ContextFreeSet grammar)
           
 DPA ArrayDPAConstructor.construct(ContextFreeSet grammar)
           
 DPA LR1Constructor.construct(ContextFreeSet grammar)
           
 

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

Methods in org.inxar.syntacs.automaton.pushdown that return DPA
 DPA DPATransformer.transform(Object o)
          Transforms the given Object to a DPA.
 DPA DPAConstructor.construct(ContextFreeSet grammar)
          Constructs a DPA.