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

Packages that use Production
com.inxar.syntacs.grammar.context_free Defines classes which implement context-free grammars. 
org.inxar.syntacs.grammar.context_free Declares interfaces which model context-free grammars. 
 

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

Classes in com.inxar.syntacs.grammar.context_free that implement Production
 class CFProduction
          Standard Production implementation.
 

Methods in com.inxar.syntacs.grammar.context_free that return Production
 Production CFProduction.add(GrammarSymbol grammarSymbol)
           
 Production CFItem.getProduction()
           
 Production CFGrammar.newProduction(NonTerminal nonTerminal)
           
 Production CFGrammar.getProduction(int ID)
           
 Production CFGrammar.getStart()
           
 Production CFLR1Item.getProduction()
           
 

Methods in com.inxar.syntacs.grammar.context_free with parameters of type Production
 void CFGrammar.setStartProduction(Production startProduction)
           
 

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

Methods in org.inxar.syntacs.grammar.context_free that return Production
 Production ContextFreeSet.getProduction(int id)
          Returns the Production with the given id.
 Production ContextFreeSet.getStart()
          Returns the Production designated as the start.
 Production ContextFreeGrammar.newProduction(NonTerminal nonTerminal)
          Allocates and returns a new Production on the given LHS NonTerminal and predefined length.
 Production Production.add(GrammarSymbol grammarSymbol)
          Concatenates the given GrammarSymbol to the end of this Production sequence.
 Production Item.getProduction()
          Returns the Production to which this Item is associated.
 

Methods in org.inxar.syntacs.grammar.context_free with parameters of type Production
 void ContextFreeGrammar.setStartProduction(Production start)
          Sets the start production to the given production.