datapoint.java

来自「好东西,hibernate-3.2.0,他是一开元的树杖hibernate-3.」· Java 代码 · 共 78 行

JAVA
78
字号
//$Id: DataPoint.java 10225 2006-08-04 20:33:48Z steve.ebersole@jboss.com $
package org.hibernate.test.proxy;

import java.io.Serializable;
import java.math.BigDecimal;

/**
 * @author Gavin King
 */
public class DataPoint implements Serializable {
	private long id;
	private BigDecimal x;
	private BigDecimal y;
	private String description;

	public DataPoint() {
	}

	public DataPoint(BigDecimal x, BigDecimal y, String description) {
		this.x = x;
		this.y = y;
		this.description = 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;
	}
	
	void exception() throws Exception {
		throw new Exception("foo");
	}
}

⌨️ 快捷键说明

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