Fixed javadoc @see syntax.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@143 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-02 04:49:08 +00:00
parent d6e9207a26
commit 9d93650b65
8 changed files with 21 additions and 21 deletions
@@ -1,5 +1,5 @@
//
// $Id: AttributeChangedEvent.java,v 1.6 2001/06/13 05:15:49 mdb Exp $
// $Id: AttributeChangedEvent.java,v 1.7 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -15,7 +15,7 @@ import com.threerings.cocktail.cher.dobj.io.ValueMarshaller;
* distributed object has changed. It can also be constructed to request
* an attribute change on an object and posted to the dobjmgr.
*
* @see DObjectManager.postEvent
* @see DObjectManager#postEvent
*/
public class AttributeChangedEvent extends TypedEvent
{
@@ -1,5 +1,5 @@
//
// $Id: AttributesChangedEvent.java,v 1.5 2001/06/13 05:15:49 mdb Exp $
// $Id: AttributesChangedEvent.java,v 1.6 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -14,7 +14,7 @@ import com.threerings.cocktail.cher.dobj.io.ValueMarshaller;
* attributes of a distributed object have been changed in a single
* transaction.
*
* @see DObjectManager.postEvent
* @see DObjectManager#postEvent
*/
public class AttributesChangedEvent extends TypedEvent
{
@@ -1,5 +1,5 @@
//
// $Id: DObject.java,v 1.15 2001/07/23 21:11:48 mdb Exp $
// $Id: DObject.java,v 1.16 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -100,7 +100,7 @@ public class DObject
* are operating on the omgr thread (you are in the middle of a call
* to <code>objectAvailable</code> or <code>handleEvent</code>).
*
* @see DObjectManager.subscribeToObject
* @see DObjectManager#subscribeToObject
*/
public void addSubscriber (Subscriber sub)
{
@@ -116,7 +116,7 @@ public class DObject
* are operating on the omgr thread (you are in the middle of a call
* to <code>objectAvailable</code> or <code>handleEvent</code>).
*
* @see DObjectManager.unsubscribeFromObject
* @see DObjectManager#unsubscribeFromObject
*/
public void removeSubscriber (Subscriber sub)
{
@@ -235,7 +235,7 @@ public class DObject
* distributed object manager when an object is created and registered
* with the system.
*
* @see DObjectManager.createObject
* @see DObjectManager#createObject
*/
public void setManager (DObjectManager mgr)
{
@@ -246,7 +246,7 @@ public class DObject
* Don't call this function. It is called by the distributed object
* manager when an object is created and registered with the system.
*
* @see DObjectManager.createObject
* @see DObjectManager#createObject
*/
public void setOid (int oid)
{
@@ -1,5 +1,5 @@
//
// $Id: DObjectManager.java,v 1.6 2001/06/13 05:17:55 mdb Exp $
// $Id: DObjectManager.java,v 1.7 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -44,8 +44,8 @@ public interface DObjectManager
* subscription is desired.
* @param target The subscriber to be subscribed.
*
* @see Subscriber.objectAvailable
* @see Subscriber.requestFailed
* @see Subscriber#objectAvailable
* @see Subscriber#requestFailed
*/
public void subscribeToObject (int oid, Subscriber target);
@@ -1,5 +1,5 @@
//
// $Id: MessageEvent.java,v 1.2 2001/07/19 19:17:06 mdb Exp $
// $Id: MessageEvent.java,v 1.3 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -18,7 +18,7 @@ import com.threerings.cocktail.cher.dobj.io.ValueMarshaller;
* same object can distinguish their different messages, and an array of
* arguments by which any contents of the message can be delivered.
*
* @see DObjectManager.postEvent
* @see DObjectManager#postEvent
*/
public class MessageEvent extends TypedEvent
{
@@ -1,5 +1,5 @@
//
// $Id: ObjectAddedEvent.java,v 1.2 2001/07/21 01:09:55 mdb Exp $
// $Id: ObjectAddedEvent.java,v 1.3 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -13,7 +13,7 @@ import java.io.IOException;
* constructed to request the addition of an oid to an
* <code>OidList</code> attribute of an object and posted to the dobjmgr.
*
* @see DObjectManager.postEvent
* @see DObjectManager#postEvent
*/
public class ObjectAddedEvent extends TypedEvent
{
@@ -1,5 +1,5 @@
//
// $Id: ObjectRemovedEvent.java,v 1.2 2001/07/21 01:09:55 mdb Exp $
// $Id: ObjectRemovedEvent.java,v 1.3 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -13,7 +13,7 @@ import java.io.IOException;
* constructed to request the removal of an oid from an
* <code>OidList</code> attribute of an object and posted to the dobjmgr.
*
* @see DObjectManager.postEvent
* @see DObjectManager#postEvent
*/
public class ObjectRemovedEvent extends TypedEvent
{
@@ -1,5 +1,5 @@
//
// $Id: Subscriber.java,v 1.4 2001/06/09 23:39:04 mdb Exp $
// $Id: Subscriber.java,v 1.5 2001/08/02 04:49:08 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -21,7 +21,7 @@ public interface Subscriber
* read-only copy, these updates will not occur and the subscriber
* should not attempt to modify the object.
*
* @see DObjectManager.subscribeToObject
* @see DObjectManager#subscribeToObject
*/
public void objectAvailable (DObject object);
@@ -30,7 +30,7 @@ public interface Subscriber
* failure will be communicated via the supplied
* <code>ObjectAccessException</code>.
*
* @see DObjectManager.subscribeToObject
* @see DObjectManager#subscribeToObject
*/
public void requestFailed (int oid, ObjectAccessException cause);