Javadoc warnings cleanups.

Note: this involves generated code from a samskivert patch I only just sent to mdb,
but he's in a meeting, so that won't show up for a little.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5369 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2008-09-12 17:59:26 +00:00
parent 8114439855
commit 7ee6ace683
27 changed files with 87 additions and 92 deletions
@@ -28,19 +28,18 @@ import java.util.ArrayList;
*/
public interface TestService extends InvocationService
{
/** Used to dispatch responses to {@link #test} requests. */
/** Used to dispatch responses to {@link TestService#test} requests. */
public static interface TestFuncListener extends InvocationListener
{
/** Informs listener of successful {@link #test} request. */
/** Informs listener of successful {@link TestService#test} request. */
public void testSucceeded (String one, int two);
}
/** Issues a test request. */
public void test (
Client client, String one, int two, ArrayList<Integer> three,
TestFuncListener listener);
Client client, String one, int two, ArrayList<Integer> three, TestFuncListener listener);
/** Used to dispatch responses to {@link #getTestOid} requests. */
/** Used to dispatch responses to {@link TestService#getTestOid} requests. */
public static interface TestOidListener extends InvocationListener
{
/** Communicates test oid to listener. */