employee.java
来自「hibernate 开源框架的代码 jar包希望大家能喜欢」· Java 代码 · 共 57 行
JAVA
57 行
// $Id: Employee.java 5899 2005-02-24 20:08:04Z steveebersole $package org.hibernate.test.subclassfilter;import java.util.Set;import java.util.HashSet;/** * Implementation of Employee. * * @author Steve Ebersole */public class Employee extends Person { private String title; private String department; private Employee manager; private Set minions = new HashSet(); public Employee() { } public Employee(String name) { super( name ); } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDepartment() { return department; } public void setDepartment(String department) { this.department = department; } public Employee getManager() { return manager; } public void setManager(Employee manager) { this.manager = manager; } public Set getMinions() { return minions; } public void setMinions(Set minions) { this.minions = minions; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?