| java_cup.runtime.SymbolFactory
All known Subclasses: java_cup.runtime.DefaultSymbolFactory, java_cup.runtime.ComplexSymbolFactory,
SymbolFactory | public interface SymbolFactory (Code) | | Creates the Symbols interface, which CUP uses as default
version: last updated 27-03-2006 author: Michael Petter |
Method Summary | |
public Symbol | newSymbol(String name, int id, Symbol left, Symbol right, Object value) | public Symbol | newSymbol(String name, int id, Symbol left, Symbol right) | public Symbol | newSymbol(String name, int id, Object value) | public Symbol | newSymbol(String name, int id) | public Symbol | startSymbol(String name, int id, int state) |
newSymbol | public Symbol newSymbol(String name, int id, Object value)(Code) | | Construction with left/right propagation switched off
|
startSymbol | public Symbol startSymbol(String name, int id, int state)(Code) | | Construction of start symbol
|
|
|