Update of /cvsroot/magicmap/magicmapserver/src/net/sf/magicmap/server/facade
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11419/src/net/sf/magicmap/server/facade
Modified Files:
MapFacade.java
Log Message:
geopositiondata implemented
Index: MapFacade.java
===================================================================
RCS file: /cvsroot/magicmap/magicmapserver/src/net/sf/magicmap/server/facade/MapFacade.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** MapFacade.java 10 Feb 2006 15:18:04 -0000 1.6
--- MapFacade.java 14 Feb 2006 16:02:19 -0000 1.7
***************
*** 180,183 ****
--- 180,208 ----
/**
+ *
+ * @param mapName
+ * @param xPos
+ * @param yPos
+ * @param longitude
+ * @param latitude
+ * @param altitude
+ * @return
+ */
+ public MapDTO createGeoPoint(String mapName, int xPos, int yPos, int longitude, int latitude, int altitude){
+ //TODO: implement method
+ return null;
+ }
+
+ /**
+ *
+ * @param mapName
+ * @param xPos
+ * @param yPos
+ */
+ public void deleteGeoPoint(String mapName, int xPos, int yPos){
+ //TODO: implement method
+ }
+
+ /**
* @param mac
*/
|