country.java

来自「Hibernate Annotations Sample」· Java 代码 · 共 58 行

JAVA
58
字号
//$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 + =
减小字号Ctrl + -
显示快捷键?