Update of /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/delegate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22817/src/net/sf/magicmap/client/delegate
Modified Files:
PositionDelegate.java
Log Message:
movePosition um den MapName erweitert.
Index: PositionDelegate.java
===================================================================
RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/delegate/PositionDelegate.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PositionDelegate.java 11 May 2005 10:51:28 -0000 1.3
--- PositionDelegate.java 7 Nov 2005 14:18:25 -0000 1.4
***************
*** 89,96 ****
* @see com.saugstation.pacw.generated.PositionFacade#movePosition(long, long, int, int)
*/
! public void movePosition(long sessionId, long positionId, int newPositionX, int newPositionY, boolean fixed)
throws RemoteException, MapException, SessionException{
try{
! this.binding.movePosition(sessionId, positionId, newPositionX, newPositionY, fixed);
} catch (Exception e){
throw ExceptionHandler.checkException(e);
--- 89,96 ----
* @see com.saugstation.pacw.generated.PositionFacade#movePosition(long, long, int, int)
*/
! public void movePosition(long sessionId, String mapname, long positionId, int newPositionX, int newPositionY, boolean fixed)
throws RemoteException, MapException, SessionException{
try{
! this.binding.movePosition(sessionId, mapname, positionId, newPositionX, newPositionY, fixed);
} catch (Exception e){
throw ExceptionHandler.checkException(e);
|