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

📄 point.java

📁 hibernate 开源框架的代码 jar包希望大家能喜欢
💻 JAVA
字号:
//$Id: Point.java 6477 2005-04-21 07:39:21Z oneovthafew $package org.hibernate.test.rowid;import java.io.Serializable;import java.math.BigDecimal;/** * @author Gavin King */public class Point implements Serializable {	private BigDecimal x;	private BigDecimal y;	private String description;	private Object row;	Point() {}		public Point(BigDecimal x, BigDecimal y) {		this.x = x;		this.y = y;	}	public BigDecimal getX() {		return x;	}	void setX(BigDecimal x) {		this.x = x;	}	public BigDecimal getY() {		return y;	}	void setY(BigDecimal y) {		this.y = y;	}	public String getDescription() {		return description;	}	public void setDescription(String description) {		this.description = description;	}	public Object getRow() {		return row;	}	public void setRow(Object row) {		this.row = row;	}}

⌨️ 快捷键说明

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