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

📄 eye.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
//$Id: Eye.java 4599 2004-09-26 05:18:27Z oneovthafew $package org.hibernate.test.legacy;import java.util.HashSet;import java.util.Set;/** * @author Gavin King */public class Eye {	private long id;	private String name;	private Jay jay;	private Set jays = new HashSet();	/**	 * @return Returns the id.	 */	public long getId() {		return id;	}	/**	 * @param id The id to set.	 */	public void setId(long id) {		this.id = id;	}	/**	 * @return Returns the jay.	 */	public Jay getJay() {		return jay;	}	/**	 * @param jay The jay to set.	 */	public void setJay(Jay jay) {		this.jay = jay;	}	/**	 * @return Returns the jays.	 */	public Set getJays() {		return jays;	}	/**	 * @param jays The jays to set.	 */	public void setJays(Set jays) {		this.jays = jays;	}	/**	 * @return Returns the name.	 */	public String getName() {		return name;	}	/**	 * @param name The name to set.	 */	public void setName(String name) {		this.name = name;	}}

⌨️ 快捷键说明

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