FileDocCategorySizeDatePackage
Account.javaAPI DocHibernate 3.2.51010Tue Dec 05 07:39:12 GMT 2006org.hibernate.test.propertyref.inheritence.union

Account

public class Account extends Object
author
Gavin King

Fields Summary
private String
accountId
private Customer
customer
private Person
person
private char
type
Constructors Summary
Methods Summary
public java.lang.StringgetAccountId()

return
Returns the accountId.

		return accountId;
	
public CustomergetCustomer()

return
Returns the user.

		return customer;
	
public PersongetPerson()

		return person;
	
public chargetType()

return
Returns the type.

		return type;
	
public voidsetAccountId(java.lang.String accountId)

param
accountId The accountId to set.

		this.accountId = accountId;
	
public voidsetCustomer(Customer user)

param
user The user to set.

		this.customer = user;
	
public voidsetPerson(Person person)

		this.person = person;
	
public voidsetType(char type)

param
type The type to set.

		this.type = type;