Uses of Class
orderprocessing.Address

Uses of Address in orderprocessing
 

Methods in orderprocessing that return Address
 Address Order.billingAddress()
          Retrieve the billing address for this order's customer
 Address Order.shippingAddress()
          Retrieve the shipping address for this order
 Address Customer.billingAddress()
          Retrieve the customer's billing address
 Address Customer.shippingAddress()
          Retrieve the customer's ship address
 

Methods in orderprocessing with parameters of type Address
 void Order.shippingAddress(Address address)
          Give this order a new ship address
 

Constructors in orderprocessing with parameters of type Address
Order(Customer customer, Address shipAddress, java.util.ArrayList orderedItems, CalculationCalendar orderDate)
          Create an Order for a particular customer and a sequence of items ordered
Order(Customer customer, Address shipAddress, BillingTerms billingTerms, java.util.ArrayList orderedItems, CalculationCalendar orderDate, CalculationCalendar requestedShippingDate, CalculationCalendar cancelDate)
          Create an Order for a particular customer and a sequence of items ordered
Customer(java.lang.String name, Address billingAddress)
          create a customer object with default values for ship address and terms
Customer(java.lang.String name, Address billingAddress, Address shipAddress)
          Create a customer object with default terms.
Customer(java.lang.String name, Address billingAddress, Address shipAddress, BillingTerms billingTerms)
          create a customer object with all options specified.