Regenerated services and receivers to fix bugs and use updated templates.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1659 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-08-20 19:38:16 +00:00
parent d7b2c3de87
commit 99edb5cd5e
34 changed files with 267 additions and 129 deletions
@@ -1,5 +1,5 @@
//
// $Id: SceneMarshaller.java,v 1.1 2002/08/14 19:07:57 mdb Exp $
// $Id: SceneMarshaller.java,v 1.2 2002/08/20 19:38:15 mdb Exp $
package com.threerings.whirled.data;
@@ -17,6 +17,10 @@ import com.threerings.whirled.data.SceneModel;
* on the server. Also provides an implementation of the response listener
* interfaces that marshall the response arguments and deliver them back
* to the requesting client.
*
* <p> Generated from <code>
* $Id: SceneMarshaller.java,v 1.2 2002/08/20 19:38:15 mdb Exp $
* </code>
*/
public class SceneMarshaller extends InvocationMarshaller
implements SceneService
@@ -27,7 +31,7 @@ public class SceneMarshaller extends InvocationMarshaller
{
/** The method id used to dispatch {@link #moveSucceeded}
* responses. */
public static final int MOVE_SUCCEEDED = 0;
public static final int MOVE_SUCCEEDED = 1;
// documentation inherited from interface
public void moveSucceeded (int arg1, PlaceConfig arg2)
@@ -36,9 +40,10 @@ public class SceneMarshaller extends InvocationMarshaller
callerOid, requestId, MOVE_SUCCEEDED,
new Object[] { new Integer(arg1), arg2 }));
}
/** The method id used to dispatch {@link #moveSucceededPlusUpdate}
* responses. */
public static final int MOVE_SUCCEEDED_PLUS_UPDATE = 1;
public static final int MOVE_SUCCEEDED_PLUS_UPDATE = 2;
// documentation inherited from interface
public void moveSucceededPlusUpdate (int arg1, PlaceConfig arg2, SceneModel arg3)
@@ -81,5 +86,5 @@ public class SceneMarshaller extends InvocationMarshaller
});
}
// Class file generated on 00:26:03 08/11/02.
// Class file generated on 12:33:06 08/20/02.
}