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 java.lang.String | getName()Gets the name
return name;
|
public org.hibernate.test.legacy.Simple | getOther()Returns the other.
return other;
|
public java.lang.Float | getPay()Gets the pay number
return number;
|
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);
number=new Float(55.8);
|
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 | setName(java.lang.String name)Sets the name
this.name = name;
|
public void | setOther(org.hibernate.test.legacy.Simple other)Sets the other.
this.other = other;
|
public void | setPay(java.lang.Float number)Sets the pay number
this.number = number;
|