Building Parsers with Java

Uses of Class
sjm.examples.cloning.Customer

Packages that use Customer
sjm.examples.cloning   
 

Uses of Customer in sjm.examples.cloning
 

Fields in sjm.examples.cloning declared as Customer
protected  Customer OrderOk.customer
           
protected  Customer OrderFlawed.customer
           
 

Methods in sjm.examples.cloning that return Customer
 Customer OrderOk.getCustomer()
          Get this order's customer.
 Customer OrderFlawed.getCustomer()
          Get this order's customer.
 

Methods in sjm.examples.cloning with parameters of type Customer
 void OrderOk.setCustomer(Customer customer)
          Set the customer for this order.
 void OrderFlawed.setCustomer(Customer customer)
          Set the customer for this order.
 

Constructors in sjm.examples.cloning with parameters of type Customer
OrderOk.OrderOk(Customer customer)
          Construct a customer.
OrderFlawed.OrderFlawed(Customer customer)
          Construct a customer.
 


by Steve Metsker