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

📄 x.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
//$Id: X.java 4599 2004-09-26 05:18:27Z oneovthafew $package org.hibernate.test.legacy;import java.util.ArrayList;import java.util.List;public class X {	private long id;	private Y y;	private List xxs = new ArrayList();	/**	 * Returns the id.	 * @return long	 */	public long getId() {		return id;	}	/**	 * Returns the y.	 * @return Y	 */	public Y getY() {		return y;	}	/**	 * Sets the id.	 * @param id The id to set	 */	public void setId(long id) {		this.id = id;	}	/**	 * Sets the y.	 * @param y The y to set	 */	public void setY(Y y) {		this.y = y;	}		public List getXxs() {		return xxs;	}	public void setXxs(List xxs) {		this.xxs = xxs;	}	public static class XX {		private Long id;		private X x;		private XX() {}		public XX(X x) {			this.x = x;		}		public Long getId() {			return id;		}		public void setId(Long id) {			this.id = id;		}		public X getX() {			return x;		}		public void setX(X x) {			this.x = x;		}	}}

⌨️ 快捷键说明

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