Uses of Class
net.percederberg.grammatica.parser.ProductionPattern

Packages that use ProductionPattern
net.percederberg.grammatica   
net.percederberg.grammatica.output   
net.percederberg.grammatica.parser   
 

Uses of ProductionPattern in net.percederberg.grammatica
 

Methods in net.percederberg.grammatica that return ProductionPattern
 ProductionPattern Grammar.getProductionPattern(int pos)
          Returns a specific production pattern.
 ProductionPattern Grammar.getProductionPattern(java.lang.String name)
          Returns a specific production pattern.
 

Uses of ProductionPattern in net.percederberg.grammatica.output
 

Methods in net.percederberg.grammatica.output with parameters of type ProductionPattern
 void CSharpAnalyzerFile.addProduction(ProductionPattern pattern, net.percederberg.grammatica.output.CSharpConstantsFile constants)
          Adds the production analysis methods to this file.
 void CSharpParserFile.addProductionConstant(ProductionPattern pattern)
          Adds a production constant definition to this file.
 void CSharpParserFile.addProduction(ProductionPattern pattern, net.percederberg.grammatica.output.CSharpConstantsFile constants)
          Adds a production pattern definition to this file.
 

Uses of ProductionPattern in net.percederberg.grammatica.parser
 

Methods in net.percederberg.grammatica.parser that return ProductionPattern
 ProductionPattern ProductionPatternAlternative.getPattern()
          Returns the production pattern containing this alternative.
 ProductionPattern Production.getPattern()
          Returns the production pattern for this production.
 

Methods in net.percederberg.grammatica.parser with parameters of type ProductionPattern
 void RecursiveDescentParser.addPattern(ProductionPattern pattern)
          Adds a new production pattern to the parser.
 void Parser.addPattern(ProductionPattern pattern)
          Adds a new production pattern to the parser.
 

Constructors in net.percederberg.grammatica.parser with parameters of type ProductionPattern
Production(ProductionPattern pattern)
          Creates a new production node.