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

📄 person.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
//$Id: Person.java 7203 2005-06-19 02:01:05Z oneovthafew $package org.hibernate.test.join;/** * @author Gavin King */public class Person {	private long id;	private String name;	private String address;	private String zip;	private String country;	private char sex;		/**	 * @return Returns the sex.	 */	public char getSex() {		return sex;	}	/**	 * @param sex The sex to set.	 */	public void setSex(char sex) {		this.sex = sex;	}	/**	 * @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 identity.	 */	public String getName() {		return name;	}	/**	 * @param identity The identity to set.	 */	public void setName(String identity) {		this.name = identity;	}	public String getSpecies() {		return null;	}	/**	 * @return Returns the country.	 */	public String getCountry() {		return country;	}	/**	 * @param country The country to set.	 */	public void setCountry(String country) {		this.country = country;	}	/**	 * @return Returns the zip.	 */	public String getZip() {		return zip;	}	/**	 * @param zip The zip to set.	 */	public void setZip(String zip) {		this.zip = zip;	}	/**	 * @param address The address to set.	 */	public void setAddress(String address) {		this.address = address;	}		public String getAddress() {		return address;	}}

⌨️ 快捷键说明

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