From: Andreas W. <an...@us...> - 2006-02-20 15:18:35
|
Update of /cvsroot/magicmap//magicmapclient/src/net/sf/magicmap/client/delegate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31175/src/net/sf/magicmap/client/delegate Modified Files: MapDelegate.java Log Message: geoposition-functions added Index: MapDelegate.java =================================================================== RCS file: /cvsroot/magicmap//magicmapclient/src/net/sf/magicmap/client/delegate/MapDelegate.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MapDelegate.java 11 May 2005 15:45:02 -0000 1.4 --- MapDelegate.java 20 Feb 2006 15:18:28 -0000 1.5 *************** *** 16,19 **** --- 16,20 ---- import net.sf.magicmap.client.delegate.interfaces.MapFacadeInterface; import net.sf.magicmap.client.utils.Settings; + import net.sf.magicmap.server.dto.GeoPointDTO; import net.sf.magicmap.server.dto.MapDTO; import net.sf.magicmap.server.dto.StringReplacementDTO; *************** *** 92,94 **** --- 93,110 ---- } + public GeoPointDTO[] getGeoPointsForMap(long sessionId, String mapName) throws MapException, SessionException, RemoteException{ + // TODO Auto-generated method stub + return null; + } + + public MapDTO createGeoPoint(long sessionId, String mapName, int xPos, int yPos, int longitude, int latitude, int altitude) throws SessionException, MapException, RemoteException{ + // TODO Auto-generated method stub + return null; + } + + public void deleteGeoPoint(long sessionId, long id) throws MapException, SessionException, RemoteException{ + // TODO Auto-generated method stub + + } + } \ No newline at end of file |