FileDocCategorySizeDatePackage
Customer.javaAPI DocHibernate 3.2.5917Sat Feb 12 00:27:32 GMT 2005org.hibernate.test.typedonetoone

Customer

public class Customer extends Object implements Serializable
author
Gavin King

Fields Summary
private String
name
private String
customerId
private Address
billingAddress
private Address
shippingAddress
Constructors Summary
Methods Summary
public AddressgetBillingAddress()

		return billingAddress;
	
public java.lang.StringgetCustomerId()

		return customerId;
	
public java.lang.StringgetName()

		return name;
	
public AddressgetShippingAddress()

		return shippingAddress;
	
public voidsetBillingAddress(Address billingAddress)

		this.billingAddress = billingAddress;
	
public voidsetCustomerId(java.lang.String customerId)

		this.customerId = customerId;
	
public voidsetName(java.lang.String name)

		this.name = name;
	
public voidsetShippingAddress(Address shippingAddress)

		this.shippingAddress = shippingAddress;