regenerated
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6197 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.presents.client;
|
||||
|
||||
import com.threerings.presents.client.InvocationDecoder;
|
||||
|
||||
/**
|
||||
* Dispatches calls to a {@link TestReceiver} instance.
|
||||
@@ -43,14 +44,12 @@ public class TestDecoder extends InvocationDecoder
|
||||
this.receiver = receiver;
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
@Override
|
||||
public String getReceiverCode ()
|
||||
{
|
||||
return RECEIVER_CODE;
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
@Override
|
||||
public void dispatchNotification (int methodId, Object[] args)
|
||||
{
|
||||
@@ -63,8 +62,7 @@ public class TestDecoder extends InvocationDecoder
|
||||
|
||||
default:
|
||||
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.TestReceiver;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
|
||||
/**
|
||||
* Used to issue notifications to a {@link TestReceiver} instance on a
|
||||
@@ -40,8 +41,7 @@ public class TestSender extends InvocationSender
|
||||
{
|
||||
sendNotification(
|
||||
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.
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user