Building Parsers with Java

Uses of Interface
sjm.examples.query.Speller

Packages that use Speller
sjm.examples.query   
 

Uses of Speller in sjm.examples.query
 

Classes in sjm.examples.query that implement Speller
 class ChipSpeller
          This class maintains dictionaries of the proper spelling of class and variable names in the chip object model.
 class MellowSpeller
          This class provides a speller that allows any spelling, which facilitates random testing of Jaql language elements.
 

Fields in sjm.examples.query declared as Speller
protected  Speller JaqlParser.speller
           
protected static Speller JaqlTester.speller
           
protected  Speller QueryBuilder.speller
           
protected  Speller ComparisonParser.speller
           
protected  Speller JaqlMediator.speller
           
 

Methods in sjm.examples.query that return Speller
protected static Speller JaqlTester.speller()
           
protected  Speller JaqlMediator.speller()
           
 

Constructors in sjm.examples.query with parameters of type Speller
JaqlParser.JaqlParser(Speller speller)
          Construct a query language parser that will use the given speller to find the proper spelling of class and variable names.
QueryBuilder.QueryBuilder(Speller speller)
          Construct a query builder that will use the given speller.
ComparisonParser.ComparisonParser(Speller speller)
          Construct a ComparisonParser that will consult the given speller for the proper spelling of variable names.
VariableAssembler.VariableAssembler(Speller speller)
          Construct a VariableAssembler that will consult the given speller for the proper spelling of variable names.
 


by Steve Metsker