FileDocCategorySizeDatePackage
Simple.javaAPI DocHibernate 3.2.52011Sun Sep 26 00:18:28 BST 2004org.hibernate.test.legacy

Simple

public class Simple extends Object implements Serializable

Fields Summary
private String
name
private String
address
private int
count
private Date
date
private Float
number
private Simple
other
private Long
parent
Constructors Summary
public Simple(int c)

		count=c;
	
public Simple()

Methods Summary
public java.lang.StringgetAddress()
Gets the address

return
Returns a String

		return address;
	
public intgetCount()
Gets the count

return
Returns a int

		return count;
	
public java.util.DategetDate()
Gets the date

return
Returns a java.util.Date

		return date;
	
public java.lang.StringgetName()
Gets the name

return
Returns a String

		return name;
	
public org.hibernate.test.legacy.SimplegetOther()
Returns the other.

return
Simple

		return other;
	
public java.lang.FloatgetPay()
Gets the pay number

return
Returns a Float

		return number;
	
public voidinit()

		name="Someone With Along Name";
		address="1234 Some Street, Some City, Victoria, 3000, Austraya";
		count=69;
		date=new java.sql.Date(666);
		number=new Float(55.8);
	
public voidsetAddress(java.lang.String address)
Sets the address

param
address The address to set

		this.address = address;
	
public voidsetCount(int count)
Sets the count

param
count The count to set

		this.count = count;
	
public voidsetDate(java.util.Date date)
Sets the date

param
date The date to set

		this.date = date;
	
public voidsetName(java.lang.String name)
Sets the name

param
name The name to set

		this.name = name;
	
public voidsetOther(org.hibernate.test.legacy.Simple other)
Sets the other.

param
other The other to set

		this.other = other;
	
public voidsetPay(java.lang.Float number)
Sets the pay number

param
number The Pay to set

		this.number = number;