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

Account

public class Account extends Object implements Serializable
author
Gavin King

Fields Summary
private String
accountId
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 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;