|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Address in orderprocessing |
Methods in orderprocessing that return Address | |
Address |
Customer.billingAddress()
Retrieve the customer's billing address |
Address |
Customer.shippingAddress()
Retrieve the customer's ship address |
Address |
Order.billingAddress()
Retrieve the billing address for this order's customer |
Address |
Order.shippingAddress()
Retrieve the shipping address for this order |
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 | |
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. |
|
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 |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |