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

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

Classes in com.inxar.syntacs.grammar.context_free that implement Terminal
 class CFEpsilon
          Standard Epsilon implementation.
 class CFTerminal
          Standard Terminal implementation.
 

Methods in com.inxar.syntacs.grammar.context_free that return Terminal
 Terminal CFGrammar.newTerminal(Token type)
           
 Terminal CFGrammar.getTerminal(int ID)
           
 Terminal CFGrammar.getTerminal(String name)
           
 Terminal CFLR1Item.getLookahead()
           
 

Methods in com.inxar.syntacs.grammar.context_free with parameters of type Terminal
 LR1Item CFItem.lookahead(Terminal lookahead)
           
 LR1Item CFLR1Item.lookahead(Terminal lookahead)
           
 

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

Subinterfaces of Terminal in org.inxar.syntacs.grammar.context_free
 interface Epsilon
          The Epsilon interface is a special type of Terminal.
 

Methods in org.inxar.syntacs.grammar.context_free that return Terminal
 Terminal ContextFreeSet.getTerminal(int id)
          Returns the Terminal with the given id.
 Terminal ContextFreeGrammar.newTerminal(Token type)
          Allocates and returns a new Terminal based on the given Token.
 Terminal LR1Item.getLookahead()
          Returns the Terminal symbol which may follow this Item.
 

Methods in org.inxar.syntacs.grammar.context_free with parameters of type Terminal
 LR1Item Item.lookahead(Terminal lookahead)
          Returns an LR1Item corresponding to this core Item with the given lookahead.