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

📄 contract.java

📁 hibernate-distribution-3.3.1.GA-dist.zip源码
💻 JAVA
字号:
//$Id: Contract.java 7222 2005-06-19 17:22:01Z oneovthafew $package org.hibernate.test.immutable;import java.io.Serializable;import java.util.ArrayList;import java.util.List;public class Contract implements Serializable {		private long id;	private String customerName;	private String type;	private List variations;	public Contract() {		super();	}	public Contract(String customerName, String type) {		this.customerName = customerName;		this.type = type;		variations = new ArrayList();	}	public String getCustomerName() {		return customerName;	}	public void setCustomerName(String customerName) {		this.customerName = customerName;	}	public long getId() {		return id;	}	public void setId(long id) {		this.id = id;	}	public String getType() {		return type;	}	public void setType(String type) {		this.type = type;	}	public List getVariations() {		return variations;	}	public void setVariations(List variations) {		this.variations = variations;	}}

⌨️ 快捷键说明

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