Renamed some "inner" classes, removed debugging lines.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4152 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-26 22:39:31 +00:00
parent fdfce50d01
commit cdd7a64b04
8 changed files with 9 additions and 17 deletions
@@ -0,0 +1,33 @@
package com.threerings.presents.data {
import com.threerings.presents.client.GotTimeBaseListener;
import com.threerings.presents.dobj.InvocationResponseEvent;
// TODO: this will be autogenerated
public class TimeBaseMarshaller_GotTimeBaseMarshaller
extends InvocationMarshaller_ListenerMarshaller
implements GotTimeBaseListener
{
public static const GOT_TIME_OID :int = 1;
public function gotTimeOid (arg1 :int) :void
{
// omgr.postEvent(new InvocationResponseEvent(
// callerOid, requestId, GOT_TIME_OID, [ arg1 ]));
}
public override function dispatchResponse (methodId :int, args :Array) :void
{
switch (methodId) {
case GOT_TIME_OID:
(listener as GotTimeBaseListener).gotTimeOid(args[0] as int);
return;
default:
super.dispatchResponse(methodId, args);
return;
}
}
}
}