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

Packages that use Action
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 Action in com.inxar.syntacs.automaton.pushdown
 

Classes in com.inxar.syntacs.automaton.pushdown that implement Action
 class StandardAction
          Standard implementation of Action.
 

Fields in com.inxar.syntacs.automaton.pushdown declared as Action
static Action ArrayDPA.ERROR
          A standard error Action cached here for convenience.
 Action[] ArrayDPA.actions
           
 

Methods in com.inxar.syntacs.automaton.pushdown that return Action
 Action ArrayDPA.action(int state, int symbol)
           
 Action MesoArrayDPA.action(int state_num, int symbol)
           
 

Constructors in com.inxar.syntacs.automaton.pushdown with parameters of type Action
ArrayDPA(int[][] action, int[][] go, Action[] actions)
          Constructs the ArrayDPA on the given action table, transition table, production length table, and Action registry.
 

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

Methods in org.inxar.syntacs.automaton.pushdown that return Action
 Action DPA.action(int state, int symbol)
          Returns the Action associated by traversing the path given from the given state over the given symbol.