FileDocCategorySizeDatePackage
Employee.javaAPI DocHibernate 3.2.5963Thu Feb 24 13:08:04 GMT 2005org.hibernate.test.subclassfilter

Employee

public class Employee extends Person
Implementation of Employee.
author
Steve Ebersole

Fields Summary
private String
title
private String
department
private Employee
manager
private Set
minions
Constructors Summary
public Employee()


	  
	
public Employee(String name)

		super( name );
	
Methods Summary
public java.lang.StringgetDepartment()

		return department;
	
public org.hibernate.test.subclassfilter.EmployeegetManager()

		return manager;
	
public java.util.SetgetMinions()

		return minions;
	
public java.lang.StringgetTitle()

		return title;
	
public voidsetDepartment(java.lang.String department)

		this.department = department;
	
public voidsetManager(org.hibernate.test.subclassfilter.Employee manager)

		this.manager = manager;
	
public voidsetMinions(java.util.Set minions)

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

		this.title = title;