⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 site.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
//$Id: Site.java,v 1.2 2005/02/12 07:27:31 steveebersole Exp $package org.hibernate.test.ternary;import java.util.HashSet;import java.util.Set;/** * @author Gavin King */public class Site {	private String name;	private String description;	private Set employees = new HashSet();	private Set managers = new HashSet();	Site() {}	public Site(String name) {		this.name=name;	}	public Set getManagers() {		return managers;	}	public void setManagers(Set managers) {		this.managers = managers;	}	public String getDescription() {		return description;	}	public void setDescription(String description) {		this.description = description;	}	public Set getEmployees() {		return employees;	}	public void setEmployees(Set employees) {		this.employees = employees;	}	public String getName() {		return name;	}	public void setName(String name) {		this.name = name;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -