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

📄 country.java

📁 Hibernate Annotations Sample
💻 JAVA
字号:
//$Id: Country.java 14801 2008-06-24 19:03:32Z hardy.ferentschik $package org.hibernate.test.annotations.immutable;/** * @author Hardy Ferentschik */import java.io.Serializable;import java.util.List;import javax.persistence.Entity;import javax.persistence.FetchType;import javax.persistence.GeneratedValue;import javax.persistence.Id;import javax.persistence.OneToMany;import org.hibernate.annotations.Cascade;import org.hibernate.annotations.Immutable;@Entity@Immutable@SuppressWarnings("serial")public class Country implements Serializable {	private Integer id;		private String name;		private List<State> states;	@Id	@GeneratedValue	public Integer getId() {		return id;	}	public String getName() {		return name;	}	public void setId(Integer integer) {		id = integer;	}	public void setName(String string) {		name = string;	}	@OneToMany(fetch = FetchType.LAZY)	@Cascade(org.hibernate.annotations.CascadeType.ALL)	@Immutable	public List<State> getStates() {		return states;	}		public void setStates(List<State> states) {		this.states = states;	}}

⌨️ 快捷键说明

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