Building Parsers with Java

Uses of Class
sjm.examples.chips.Customer

Packages that use Customer
sjm.examples.chips   
sjm.examples.query   
 

Uses of Customer in sjm.examples.chips
 

Fields in sjm.examples.chips declared as Customer
protected  Customer Order.customer
           
 

Methods in sjm.examples.chips that return Customer
static Customer ChipBase.customer(int ID)
          Return a customer, given his or her ID.
 Customer Order.getCustomer()
          Return this order's customer.
 

Methods in sjm.examples.chips with parameters of type Customer
static void ChipBase.add(Customer c)
          Adds a customer to the database.
 

Constructors in sjm.examples.chips with parameters of type Customer
Order.Order(Customer customer, Chip chip, int bagsPerMonth)
          Create an order given a customer, a chip, and a number of bags to ship per month.
Order.Order(Customer customer, Chip chip, java.lang.Integer bagsPerMonth)
          Create an order given a customer, a chip, and a number of bags to ship per month.
 

Uses of Customer in sjm.examples.query
 

Methods in sjm.examples.query with parameters of type Customer
static Fact ChipSource.fact(Customer c)
          Create a customer fact from a customer object.
 


by Steve Metsker