Update of /cvsroot/magicmap/magicmapserver/src/net/sf/magicmap/server/dto
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28837/src/net/sf/magicmap/server/dto
Modified Files:
MapDTO.java
Added Files:
GeoPointDTO.java
Log Message:
--- NEW FILE: GeoPointDTO.java ---
package net.sf.magicmap.server.dto;
/**
* @author Andreas Weiss und Florian Lederer
*
*/
public class GeoPointDTO {
private Long id;
// Geokoordinaten in Millisekunden
private Integer geoPointX;
private Integer geoPointY;
private Integer geoPointLat;
private Integer geoPointLong;
private Integer geoPointAlt;
/**
* @return
*/
public Integer getGeoPointAlt() {
return geoPointAlt;
}
/**
* @param geoPointAlt
*/
public void setGeoPointAlt(Integer geoPointAlt) {
this.geoPointAlt = geoPointAlt;
}
/**
* @return
*/
public Integer getGeoPointLat() {
return geoPointLat;
}
/**
* @param geoPointLat
*/
public void setGeoPointLat(Integer geoPointLat) {
this.geoPointLat = geoPointLat;
}
/**
* @return
*/
public Integer getGeoPointLong() {
return geoPointLong;
}
/**
* @param geoPointLong
*/
public void setGeoPointLong(Integer geoPointLong) {
this.geoPointLong = geoPointLong;
}
/**
* @return
*/
public Integer getGeoPointX() {
return geoPointX;
}
public void setGeoPointX(Integer geoPointX) {
this.geoPointX = geoPointX;
}
public Integer getGeoPointY() {
return geoPointY;
}
public void setGeoPointY(Integer geoPointY) {
this.geoPointY = geoPointY;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}
Index: MapDTO.java
===================================================================
RCS file: /cvsroot/magicmap/magicmapserver/src/net/sf/magicmap/server/dto/MapDTO.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** MapDTO.java 10 Feb 2006 15:01:14 -0000 1.5
--- MapDTO.java 17 Feb 2006 16:12:34 -0000 1.6
***************
*** 80,120 ****
}
public Integer getGeoPoint2X(){
! return this.geoPoint1X;
}
public Integer getGeoPoint2Y(){
! return this.geoPoint1Y;
}
public Integer getGeoPoint2Lat(){
! return this.geoPoint1Lat;
}
public Integer getGeoPoint2Long(){
! return this.geoPoint1Long;
}
public Integer getGeoPoint2Alt(){
! return this.geoPoint1Alt;
}
public Integer getGeoPoint3X(){
! return this.geoPoint1X;
}
public Integer getGeoPoint3Y(){
! return this.geoPoint1Y;
}
public Integer getGeoPoint3Lat(){
! return this.geoPoint1Lat;
}
public Integer getGeoPoint3Long(){
! return this.geoPoint1Long;
}
public Integer getGeoPoint3Alt(){
! return this.geoPoint1Alt;
}
--- 80,120 ----
}
public Integer getGeoPoint2X(){
! return this.geoPoint2X;
}
public Integer getGeoPoint2Y(){
! return this.geoPoint2Y;
}
public Integer getGeoPoint2Lat(){
! return this.geoPoint2Lat;
}
public Integer getGeoPoint2Long(){
! return this.geoPoint2Long;
}
public Integer getGeoPoint2Alt(){
! return this.geoPoint2Alt;
}
public Integer getGeoPoint3X(){
! return this.geoPoint3X;
}
public Integer getGeoPoint3Y(){
! return this.geoPoint3Y;
}
public Integer getGeoPoint3Lat(){
! return this.geoPoint3Lat;
}
public Integer getGeoPoint3Long(){
! return this.geoPoint3Long;
}
public Integer getGeoPoint3Alt(){
! return this.geoPoint3Alt;
}
|