point.java
来自「seam 源码 新型J2EE柜架 seam 源码 新型J2EE柜架」· Java 代码 · 共 42 行
JAVA
42 行
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 + =
减小字号Ctrl + -
显示快捷键?