regenerated

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6197 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Charlie Groves
2010-10-14 23:15:03 +00:00
parent 5d48f7726a
commit 9e5d4b95fa
2 changed files with 4 additions and 6 deletions
@@ -21,6 +21,7 @@
package com.threerings.presents.client; package com.threerings.presents.client;
import com.threerings.presents.client.InvocationDecoder;
/** /**
* Dispatches calls to a {@link TestReceiver} instance. * Dispatches calls to a {@link TestReceiver} instance.
@@ -43,14 +44,12 @@ public class TestDecoder extends InvocationDecoder
this.receiver = receiver; this.receiver = receiver;
} }
// documentation inherited
@Override @Override
public String getReceiverCode () public String getReceiverCode ()
{ {
return RECEIVER_CODE; return RECEIVER_CODE;
} }
// documentation inherited
@Override @Override
public void dispatchNotification (int methodId, Object[] args) public void dispatchNotification (int methodId, Object[] args)
{ {
@@ -63,8 +62,7 @@ public class TestDecoder extends InvocationDecoder
default: default:
super.dispatchNotification(methodId, args); super.dispatchNotification(methodId, args);
return;
} }
} }
// Generated on 12:14:10 08/12/02.
} }
@@ -24,6 +24,7 @@ package com.threerings.presents.server;
import com.threerings.presents.client.TestDecoder; import com.threerings.presents.client.TestDecoder;
import com.threerings.presents.client.TestReceiver; import com.threerings.presents.client.TestReceiver;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationSender;
/** /**
* Used to issue notifications to a {@link TestReceiver} instance on a * Used to issue notifications to a {@link TestReceiver} instance on a
@@ -40,8 +41,7 @@ public class TestSender extends InvocationSender
{ {
sendNotification( sendNotification(
target, TestDecoder.RECEIVER_CODE, TestDecoder.RECEIVED_TEST, target, TestDecoder.RECEIVER_CODE, TestDecoder.RECEIVED_TEST,
new Object[] { new Integer(arg1), arg2 }); new Object[] { Integer.valueOf(arg1), arg2 });
} }
// Generated on 12:14:10 08/12/02.
} }