Methods Summary |
---|
public java.lang.String | getAddress()Gets the address
return address;
|
public int | getCount()Gets the count
return count;
|
public java.util.Date | getDate()Gets the date
return date;
|
public long | getId()
return id;
|
public java.lang.String | getName()Gets the name
return name;
|
public org.hibernate.test.legacy.Top | getOther()Returns the other.
return other;
|
public void | init()
name="Someone With Along Name";
address="1234 Some Street, Some City, Victoria, 3000, Austraya";
count=69;
date=new java.sql.Date(666);
|
public void | setAddress(java.lang.String address)Sets the address
this.address = address;
|
public void | setCount(int count)Sets the count
this.count = count;
|
public void | setDate(java.util.Date date)Sets the date
this.date = date;
|
public void | setId(long l)
id = l;
|
public void | setName(java.lang.String name)Sets the name
this.name = name;
|
public void | setOther(org.hibernate.test.legacy.Top other)Sets the other.
this.other = other;
|