Javadoc nitpickery

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5478 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2008-10-28 20:37:28 +00:00
parent 826a1a0bcc
commit da52d29a0a
3 changed files with 6 additions and 3 deletions
@@ -23,14 +23,16 @@ package com.threerings.crowd.server;
import com.threerings.presents.server.ClientLocal; import com.threerings.presents.server.ClientLocal;
import com.threerings.crowd.data.BodyObject;
/** /**
* Contains information tracked for each body by the server. * Contains information tracked for each body by the server.
*/ */
public class BodyLocal extends ClientLocal public class BodyLocal extends ClientLocal
{ {
/** /**
* The time at which the {@link #status} field was last updated. This is only available on the * The time at which the {@link BodyObject#status} field was last updated.
* server. * This is only available on the server.
*/ */
public long statusTime; public long statusTime;
} }
@@ -654,7 +654,7 @@ public class DObject
} }
/** /**
* Retrieves a local attribute for the supplied key. See {@link #setLocalAttribute} for * Retrieves a local attribute for the supplied key. See {@link #setLocal} for
* information on key polymorphism. Returns null if no attribute is found that matches the * information on key polymorphism. Returns null if no attribute is found that matches the
* supplied key. * supplied key.
*/ */
@@ -24,6 +24,7 @@ package com.threerings.presents.util;
import java.util.concurrent.CancellationException; import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future; import java.util.concurrent.Future;
import java.util.concurrent.FutureTask;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException; import java.util.concurrent.TimeoutException;
import java.util.concurrent.locks.AbstractQueuedSynchronizer; import java.util.concurrent.locks.AbstractQueuedSynchronizer;