FileDocCategorySizeDatePackage
Account.javaAPI DocHibernate 3.2.5848Tue Dec 05 07:39:12 GMT 2006org.hibernate.test.propertyref.basic

Account

public class Account extends Object
author
Gavin King

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

return
Returns the accountId.

		return accountId;
	
public chargetType()

return
Returns the type.

		return type;
	
public PersongetUser()

return
Returns the user.

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

param
accountId The accountId to set.

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

param
type The type to set.

		this.type = type;
	
public voidsetUser(Person user)

param
user The user to set.

		this.user = user;