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
@@ -27,7 +27,7 @@ import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.util.Integer;
/**
* Provides the implementation of the {@link BureauService} interface
* Provides the implementation of the <code>BureauService</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.Integer;
public class BureauMarshaller extends InvocationMarshaller
implements BureauService
{
/** The method id used to dispatch {@link #agentCreated} requests. */
/** The method id used to dispatch <code>agentCreated</code> requests. */
public static const AGENT_CREATED :int = 1;
// from interface BureauService
@@ -47,7 +47,7 @@ public class BureauMarshaller extends InvocationMarshaller
]);
}
/** The method id used to dispatch {@link #agentCreationFailed} requests. */
/** The method id used to dispatch <code>agentCreationFailed</code> requests. */
public static const AGENT_CREATION_FAILED :int = 2;
// from interface BureauService
@@ -58,7 +58,7 @@ public class BureauMarshaller extends InvocationMarshaller
]);
}
/** The method id used to dispatch {@link #agentDestroyed} requests. */
/** The method id used to dispatch <code>agentDestroyed</code> requests. */
public static const AGENT_DESTROYED :int = 3;
// from interface BureauService
@@ -69,7 +69,7 @@ public class BureauMarshaller extends InvocationMarshaller
]);
}
/** The method id used to dispatch {@link #bureauInitialized} requests. */
/** The method id used to dispatch <code>bureauInitialized</code> requests. */
public static const BUREAU_INITIALIZED :int = 4;
// from interface BureauService