|
From: Andreas W. <an...@us...> - 2006-02-10 14:45:43
|
Update of /cvsroot/magicmap//magicmapserver/src/net/sf/magicmap/server/dto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25891/src/net/sf/magicmap/server/dto Modified Files: MapDTO.java Log Message: Wertebereich auf long geändert Index: MapDTO.java =================================================================== RCS file: /cvsroot/magicmap//magicmapserver/src/net/sf/magicmap/server/dto/MapDTO.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MapDTO.java 10 Feb 2006 14:38:56 -0000 1.3 --- MapDTO.java 10 Feb 2006 14:45:32 -0000 1.4 *************** *** 22,40 **** // Geokoordinaten in Millisekunden ! private Integer geoPoint1X; ! private Integer geoPoint1Y; ! private Integer geoPoint1Lat; ! private Integer geoPoint1Long; ! private Integer geoPoint1Alt; ! private Integer geoPoint2X; ! private Integer geoPoint2Y; ! private Integer geoPoint2Lat; ! private Integer geoPoint2Long; ! private Integer geoPoint2Alt; ! private Integer geoPoint3X; ! private Integer geoPoint3Y; ! private Integer geoPoint3Lat; ! private Integer geoPoint3Long; ! private Integer geoPoint3Alt; public MapDTO() {} --- 22,40 ---- // Geokoordinaten in Millisekunden ! private long geoPoint1X; ! private long geoPoint1Y; ! private long geoPoint1Lat; ! private long geoPoint1Long; ! private long geoPoint1Alt; ! private long geoPoint2X; ! private long geoPoint2Y; ! private long geoPoint2Lat; ! private long geoPoint2Long; ! private long geoPoint2Alt; ! private long geoPoint3X; ! private long geoPoint3Y; ! private long geoPoint3Lat; ! private long geoPoint3Long; ! private long geoPoint3Alt; public MapDTO() {} *************** *** 52,119 **** } ! public Integer getImageHeight(){ return this.imageHeight; } ! public Integer getImageWidth(){ return this.imageWidth; } ! public Integer getGeoPoint1X(){ return this.geoPoint1X; } ! public Integer getGeoPoint1Y(){ return this.geoPoint1Y; } ! public Integer getGeoPoint1Lat(){ return this.geoPoint1Lat; } ! public Integer getGeoPoint1Long(){ return this.geoPoint1Long; } ! public Integer getGeoPoint1Alt(){ return this.geoPoint1Alt; } ! 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; } --- 52,119 ---- } ! public long getImageHeight(){ return this.imageHeight; } ! public long getImageWidth(){ return this.imageWidth; } ! public long getGeoPoint1X(){ return this.geoPoint1X; } ! public long getGeoPoint1Y(){ return this.geoPoint1Y; } ! public long getGeoPoint1Lat(){ return this.geoPoint1Lat; } ! public long getGeoPoint1Long(){ return this.geoPoint1Long; } ! public long getGeoPoint1Alt(){ return this.geoPoint1Alt; } ! public long getGeoPoint2X(){ return this.geoPoint1X; } ! public long getGeoPoint2Y(){ return this.geoPoint1Y; } ! public long getGeoPoint2Lat(){ return this.geoPoint1Lat; } ! public long getGeoPoint2Long(){ return this.geoPoint1Long; } ! public long getGeoPoint2Alt(){ return this.geoPoint1Alt; } ! public long getGeoPoint3X(){ return this.geoPoint1X; } ! public long getGeoPoint3Y(){ return this.geoPoint1Y; } ! public long getGeoPoint3Lat(){ return this.geoPoint1Lat; } ! public long getGeoPoint3Long(){ return this.geoPoint1Long; } ! public long getGeoPoint3Alt(){ return this.geoPoint1Alt; } *************** *** 158,162 **** * @param geoPoint1X The X Coordinate for the first Georeferencepoint on the map */ ! public void setGeoPoint1X(Integer geoPoint1X){ this.geoPoint1X = geoPoint1X; } --- 158,162 ---- * @param geoPoint1X The X Coordinate for the first Georeferencepoint on the map */ ! public void setGeoPoint1X(long geoPoint1X){ this.geoPoint1X = geoPoint1X; } *************** *** 165,169 **** * @param geoPoint1Y The Y Coordinate for the first Georeferencepoint on the map */ ! public void setGeoPoint1Y(Integer geoPoint1Y){ this.geoPoint1Y = geoPoint1Y; } --- 165,169 ---- * @param geoPoint1Y The Y Coordinate for the first Georeferencepoint on the map */ ! public void setGeoPoint1Y(long geoPoint1Y){ this.geoPoint1Y = geoPoint1Y; } *************** *** 172,176 **** * @param geoPoint1Lat The Latitude for the first Georeferencepoint on the map */ ! public void setGeoPoint1Lat(Integer geoPoint1Lat){ this.geoPoint1Lat = geoPoint1Lat; } --- 172,176 ---- * @param geoPoint1Lat The Latitude for the first Georeferencepoint on the map */ ! public void setGeoPoint1Lat(long geoPoint1Lat){ this.geoPoint1Lat = geoPoint1Lat; } *************** *** 179,183 **** * @param geoPoint1Long The Longitude for the first Georeferencepoint on the map */ ! public void setGeoPoint1Long(Integer geoPoint1Long){ this.geoPoint1Long = geoPoint1Long; } --- 179,183 ---- * @param geoPoint1Long The Longitude for the first Georeferencepoint on the map */ ! public void setGeoPoint1Long(long geoPoint1Long){ this.geoPoint1Long = geoPoint1Long; } *************** *** 186,190 **** * @param geoPoint1Alt The Altitude for the first Georeferencepoint on the map */ ! public void setGeoPoint1Alt(Integer geoPoint1Alt){ this.geoPoint1Alt = geoPoint1Alt; } --- 186,190 ---- * @param geoPoint1Alt The Altitude for the first Georeferencepoint on the map */ ! public void setGeoPoint1Alt(long geoPoint1Alt){ this.geoPoint1Alt = geoPoint1Alt; } *************** *** 193,197 **** * @param geoPoint2X The X Coordinate for the second Georeferencepoint on the map */ ! public void setGeoPoint2X(Integer geoPoint2X){ this.geoPoint2X = geoPoint2X; } --- 193,197 ---- * @param geoPoint2X The X Coordinate for the second Georeferencepoint on the map */ ! public void setGeoPoint2X(long geoPoint2X){ this.geoPoint2X = geoPoint2X; } *************** *** 200,204 **** * @param geoPoint2Y The Y Coordinate for the second Georeferencepoint on the map */ ! public void setGeoPoint2Y(Integer geoPoint2Y){ this.geoPoint2Y = geoPoint2Y; } --- 200,204 ---- * @param geoPoint2Y The Y Coordinate for the second Georeferencepoint on the map */ ! public void setGeoPoint2Y(long geoPoint2Y){ this.geoPoint2Y = geoPoint2Y; } *************** *** 207,211 **** * @param geoPoint2Lat The Latitude for the second Georeferencepoint on the map */ ! public void setGeoPoint2Lat(Integer geoPoint2Lat){ this.geoPoint2Lat = geoPoint2Lat; } --- 207,211 ---- * @param geoPoint2Lat The Latitude for the second Georeferencepoint on the map */ ! public void setGeoPoint2Lat(long geoPoint2Lat){ this.geoPoint2Lat = geoPoint2Lat; } *************** *** 214,218 **** * @param geoPoint2Long The Longitude for the second Georeferencepoint on the map */ ! public void setGeoPoint2Long(Integer geoPoint2Long){ this.geoPoint2Long = geoPoint2Long; } --- 214,218 ---- * @param geoPoint2Long The Longitude for the second Georeferencepoint on the map */ ! public void setGeoPoint2Long(long geoPoint2Long){ this.geoPoint2Long = geoPoint2Long; } *************** *** 220,224 **** * @param geoPoint2Alt The Altitude for the second Georeferencepoint on the map */ ! public void setGeoPoint2Alt(Integer geoPoint2Alt){ this.geoPoint2Alt = geoPoint2Alt; } --- 220,224 ---- * @param geoPoint2Alt The Altitude for the second Georeferencepoint on the map */ ! public void setGeoPoint2Alt(long geoPoint2Alt){ this.geoPoint2Alt = geoPoint2Alt; } *************** *** 227,231 **** * @param geoPoint3X The X Coordinate for the third Georeferencepoint on the map */ ! public void setGeoPoint3X(Integer geoPoint3X){ this.geoPoint3X = geoPoint3X; } --- 227,231 ---- * @param geoPoint3X The X Coordinate for the third Georeferencepoint on the map */ ! public void setGeoPoint3X(long geoPoint3X){ this.geoPoint3X = geoPoint3X; } *************** *** 234,238 **** * @param geoPoint3Y The Y Coordinate for the third Georeferencepoint on the map */ ! public void setGeoPoint3Y(Integer geoPoint3Y){ this.geoPoint3Y = geoPoint3Y; } --- 234,238 ---- * @param geoPoint3Y The Y Coordinate for the third Georeferencepoint on the map */ ! public void setGeoPoint3Y(long geoPoint3Y){ this.geoPoint3Y = geoPoint3Y; } *************** *** 241,245 **** * @param geoPoint3Lat The Latitude for the third Georeferencepoint on the map */ ! public void setGeoPoint3Lat(Integer geoPoint3Lat){ this.geoPoint3Lat = geoPoint3Lat; } --- 241,245 ---- * @param geoPoint3Lat The Latitude for the third Georeferencepoint on the map */ ! public void setGeoPoint3Lat(long geoPoint3Lat){ this.geoPoint3Lat = geoPoint3Lat; } *************** *** 248,252 **** * @param geoPoint3Long The Longitude for the third Georeferencepoint on the map */ ! public void setGeoPoint3Long(Integer geoPoint3Long){ this.geoPoint3Long = geoPoint3Long; } --- 248,252 ---- * @param geoPoint3Long The Longitude for the third Georeferencepoint on the map */ ! public void setGeoPoint3Long(long geoPoint3Long){ this.geoPoint3Long = geoPoint3Long; } *************** *** 254,258 **** * @param geoPoint3Alt The Altitude for the third Georeferencepoint on the map */ ! public void setGeoPoint3Alt(Integer geoPoint3Alt){ this.geoPoint3Alt = geoPoint3Alt; } --- 254,258 ---- * @param geoPoint3Alt The Altitude for the third Georeferencepoint on the map */ ! public void setGeoPoint3Alt(long geoPoint3Alt){ this.geoPoint3Alt = geoPoint3Alt; } |