datapoint.java

来自「hibernate 开源框架的代码 jar包希望大家能喜欢」· Java 代码 · 共 63 行

JAVA
63
字号
//$Id: DataPoint.java 7231 2005-06-19 22:04:00Z oneovthafew $package org.hibernate.test.readonly;import java.math.BigDecimal;/** * @author Gavin King */public class DataPoint {	private long id;	private BigDecimal x;	private BigDecimal y;	private String description;	/**	 * @return Returns the description.	 */	public String getDescription() {		return description;	}	/**	 * @param description The description to set.	 */	public void setDescription(String description) {		this.description = description;	}	/**	 * @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 x.	 */	public BigDecimal getX() {		return x;	}	/**	 * @param x The x to set.	 */	public void setX(BigDecimal x) {		this.x = x;	}	/**	 * @return Returns the y.	 */	public BigDecimal getY() {		return y;	}	/**	 * @param y The y to set.	 */	public void setY(BigDecimal y) {		this.y = y;	}}

⌨️ 快捷键说明

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