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

📄 point.java

📁 seam 源码 新型J2EE柜架 seam 源码 新型J2EE柜架
💻 JAVA
字号:
package com.ibm.dw.open18;import javax.persistence.Embeddable;@Embeddablepublic class Point {		private Double latitude;		private Double longitude;	public Point() {		super();	}	public Point( Double latitude, Double longitude ) {		super();		this.latitude = latitude;		this.longitude = longitude;	}	public Double getLatitude() {		return latitude;	}	public void setLatitude( Double latitude ) {		this.latitude = latitude;	}	public Double getLongitude() {		return longitude;	}	public void setLongitude( Double longitude ) {		this.longitude = longitude;	}		public String toString() {		return new StringBuffer().append( latitude ).append( "," ).append( longitude ).toString();	}}

⌨️ 快捷键说明

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