Fixed a bunch of type safety bits pointed out by the latest version of Eclipse.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5274 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-30 12:58:51 +00:00
parent ca4c5897fb
commit 725f656197
77 changed files with 248 additions and 250 deletions
@@ -30,7 +30,7 @@ import com.threerings.presents.data.InvocationMarshaller_ListenerMarshaller;
import com.threerings.util.Name;
/**
* Provides the implementation of the {@link ChatService} interface
* Provides the implementation of the <code>ChatService</code> interface
* that marshalls the arguments and delivers the request to the provider
* on the server. Also provides an implementation of the response listener
* interfaces that marshall the response arguments and deliver them back
@@ -39,7 +39,7 @@ import com.threerings.util.Name;
public class ChatMarshaller extends InvocationMarshaller
implements ChatService
{
/** The method id used to dispatch {@link #away} requests. */
/** The method id used to dispatch <code>away</code> requests. */
public static const AWAY :int = 1;
// from interface ChatService
@@ -50,7 +50,7 @@ public class ChatMarshaller extends InvocationMarshaller
]);
}
/** The method id used to dispatch {@link #broadcast} requests. */
/** The method id used to dispatch <code>broadcast</code> requests. */
public static const BROADCAST :int = 2;
// from interface ChatService
@@ -63,7 +63,7 @@ public class ChatMarshaller extends InvocationMarshaller
]);
}
/** The method id used to dispatch {@link #tell} requests. */
/** The method id used to dispatch <code>tell</code> requests. */
public static const TELL :int = 3;
// from interface ChatService
@@ -31,7 +31,7 @@ import com.threerings.util.Long;
public class ChatMarshaller_TellMarshaller
extends InvocationMarshaller_ListenerMarshaller
{
/** The method id used to dispatch {@link #tellSucceeded} responses. */
/** The method id used to dispatch <code>tellSucceeded</code> responses. */
public static const TELL_SUCCEEDED :int = 1;
// from InvocationMarshaller_ListenerMarshaller
@@ -27,7 +27,7 @@ import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.util.Byte;
/**
* Provides the implementation of the {@link SpeakService} interface
* Provides the implementation of the <code>SpeakService</code> interface
* that marshalls the arguments and delivers the request to the provider
* on the server. Also provides an implementation of the response listener
* interfaces that marshall the response arguments and deliver them back
@@ -36,7 +36,7 @@ import com.threerings.util.Byte;
public class SpeakMarshaller extends InvocationMarshaller
implements SpeakService
{
/** The method id used to dispatch {@link #speak} requests. */
/** The method id used to dispatch <code>speak</code> requests. */
public static const SPEAK :int = 1;
// from interface SpeakService