FileDocCategorySizeDatePackage
Top.javaAPI DocHibernate 3.2.51754Sat Feb 12 00:27:32 GMT 2005org.hibernate.test.legacy

Top

public class Top extends Object

Fields Summary
private long
id
private String
name
private String
address
private int
count
private Date
date
private Top
other
private Top
top
Constructors Summary
public Top(int c)

		count=c;
	
public Top()

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 longgetId()

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

return
Returns a String

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

return
Simple

		return other;
	
public voidinit()

		name="Someone With Along Name";
		address="1234 Some Street, Some City, Victoria, 3000, Austraya";
		count=69;
		date=new java.sql.Date(666);
	
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 voidsetId(long l)

		id = l;
	
public voidsetName(java.lang.String name)
Sets the name

param
name The name to set

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

param
other The other to set

		this.other = other;