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

Packages that use NonTerminal
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 NonTerminal in com.inxar.syntacs.grammar.context_free
 

Classes in com.inxar.syntacs.grammar.context_free that implement NonTerminal
 class CFNonTerminal
          Standard NonTerminal implementation.
 

Methods in com.inxar.syntacs.grammar.context_free that return NonTerminal
 NonTerminal CFProduction.getNonTerminal()
           
 NonTerminal CFGrammar.newNonTerminal(String name)
           
 NonTerminal CFGrammar.getNonTerminal(int ID)
           
 NonTerminal CFGrammar.getNonTerminal(String name)
           
 

Methods in com.inxar.syntacs.grammar.context_free with parameters of type NonTerminal
 Production CFGrammar.newProduction(NonTerminal nonTerminal)
           
 

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

Methods in org.inxar.syntacs.grammar.context_free that return NonTerminal
 NonTerminal ContextFreeSet.getNonTerminal(int id)
          Returns the NonTerminal with the given id.
 NonTerminal ContextFreeGrammar.newNonTerminal(String name)
          Allocates and returns a new NonTerminal with the given name.
 NonTerminal Production.getNonTerminal()
          Returns the NonTerminal defined as the left hand side of this Production.
 

Methods in org.inxar.syntacs.grammar.context_free with parameters of type NonTerminal
 Production ContextFreeGrammar.newProduction(NonTerminal nonTerminal)
          Allocates and returns a new Production on the given LHS NonTerminal and predefined length.