FileDocCategorySizeDatePackage
Employee.javaAPI DocHibernate 3.2.5905Sun Jun 12 17:03:30 BST 2005org.hibernate.test.ondelete

Employee

public class Employee extends Person
author
Gavin King

Fields Summary
private String
title
private BigDecimal
salary
private Employee
manager
Constructors Summary
Methods Summary
public org.hibernate.test.ondelete.EmployeegetManager()

return
Returns the manager.

		return manager;
	
public java.math.BigDecimalgetSalary()

return
Returns the salary.

		return salary;
	
public java.lang.StringgetTitle()

return
Returns the title.

		return title;
	
public voidsetManager(org.hibernate.test.ondelete.Employee manager)

param
manager The manager to set.

		this.manager = manager;
	
public voidsetSalary(java.math.BigDecimal salary)

param
salary The salary to set.

		this.salary = salary;
	
public voidsetTitle(java.lang.String title)

param
title The title to set.

		this.title = title;