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:
@@ -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;
|
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
|
* distributed object has changed. It can also be constructed to request
|
||||||
* an attribute change on an object and posted to the dobjmgr.
|
* an attribute change on an object and posted to the dobjmgr.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.postEvent
|
* @see DObjectManager#postEvent
|
||||||
*/
|
*/
|
||||||
public class AttributeChangedEvent extends TypedEvent
|
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;
|
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
|
* attributes of a distributed object have been changed in a single
|
||||||
* transaction.
|
* transaction.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.postEvent
|
* @see DObjectManager#postEvent
|
||||||
*/
|
*/
|
||||||
public class AttributesChangedEvent extends TypedEvent
|
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;
|
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
|
* are operating on the omgr thread (you are in the middle of a call
|
||||||
* to <code>objectAvailable</code> or <code>handleEvent</code>).
|
* to <code>objectAvailable</code> or <code>handleEvent</code>).
|
||||||
*
|
*
|
||||||
* @see DObjectManager.subscribeToObject
|
* @see DObjectManager#subscribeToObject
|
||||||
*/
|
*/
|
||||||
public void addSubscriber (Subscriber sub)
|
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
|
* are operating on the omgr thread (you are in the middle of a call
|
||||||
* to <code>objectAvailable</code> or <code>handleEvent</code>).
|
* to <code>objectAvailable</code> or <code>handleEvent</code>).
|
||||||
*
|
*
|
||||||
* @see DObjectManager.unsubscribeFromObject
|
* @see DObjectManager#unsubscribeFromObject
|
||||||
*/
|
*/
|
||||||
public void removeSubscriber (Subscriber sub)
|
public void removeSubscriber (Subscriber sub)
|
||||||
{
|
{
|
||||||
@@ -235,7 +235,7 @@ public class DObject
|
|||||||
* distributed object manager when an object is created and registered
|
* distributed object manager when an object is created and registered
|
||||||
* with the system.
|
* with the system.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.createObject
|
* @see DObjectManager#createObject
|
||||||
*/
|
*/
|
||||||
public void setManager (DObjectManager mgr)
|
public void setManager (DObjectManager mgr)
|
||||||
{
|
{
|
||||||
@@ -246,7 +246,7 @@ public class DObject
|
|||||||
* Don't call this function. It is called by the distributed object
|
* Don't call this function. It is called by the distributed object
|
||||||
* manager when an object is created and registered with the system.
|
* manager when an object is created and registered with the system.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.createObject
|
* @see DObjectManager#createObject
|
||||||
*/
|
*/
|
||||||
public void setOid (int oid)
|
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;
|
package com.threerings.cocktail.cher.dobj;
|
||||||
|
|
||||||
@@ -44,8 +44,8 @@ public interface DObjectManager
|
|||||||
* subscription is desired.
|
* subscription is desired.
|
||||||
* @param target The subscriber to be subscribed.
|
* @param target The subscriber to be subscribed.
|
||||||
*
|
*
|
||||||
* @see Subscriber.objectAvailable
|
* @see Subscriber#objectAvailable
|
||||||
* @see Subscriber.requestFailed
|
* @see Subscriber#requestFailed
|
||||||
*/
|
*/
|
||||||
public void subscribeToObject (int oid, Subscriber target);
|
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;
|
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
|
* same object can distinguish their different messages, and an array of
|
||||||
* arguments by which any contents of the message can be delivered.
|
* arguments by which any contents of the message can be delivered.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.postEvent
|
* @see DObjectManager#postEvent
|
||||||
*/
|
*/
|
||||||
public class MessageEvent extends TypedEvent
|
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;
|
package com.threerings.cocktail.cher.dobj;
|
||||||
|
|
||||||
@@ -13,7 +13,7 @@ import java.io.IOException;
|
|||||||
* constructed to request the addition of an oid to an
|
* constructed to request the addition of an oid to an
|
||||||
* <code>OidList</code> attribute of an object and posted to the dobjmgr.
|
* <code>OidList</code> attribute of an object and posted to the dobjmgr.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.postEvent
|
* @see DObjectManager#postEvent
|
||||||
*/
|
*/
|
||||||
public class ObjectAddedEvent extends TypedEvent
|
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;
|
package com.threerings.cocktail.cher.dobj;
|
||||||
|
|
||||||
@@ -13,7 +13,7 @@ import java.io.IOException;
|
|||||||
* constructed to request the removal of an oid from an
|
* constructed to request the removal of an oid from an
|
||||||
* <code>OidList</code> attribute of an object and posted to the dobjmgr.
|
* <code>OidList</code> attribute of an object and posted to the dobjmgr.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.postEvent
|
* @see DObjectManager#postEvent
|
||||||
*/
|
*/
|
||||||
public class ObjectRemovedEvent extends TypedEvent
|
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;
|
package com.threerings.cocktail.cher.dobj;
|
||||||
|
|
||||||
@@ -21,7 +21,7 @@ public interface Subscriber
|
|||||||
* read-only copy, these updates will not occur and the subscriber
|
* read-only copy, these updates will not occur and the subscriber
|
||||||
* should not attempt to modify the object.
|
* should not attempt to modify the object.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.subscribeToObject
|
* @see DObjectManager#subscribeToObject
|
||||||
*/
|
*/
|
||||||
public void objectAvailable (DObject object);
|
public void objectAvailable (DObject object);
|
||||||
|
|
||||||
@@ -30,7 +30,7 @@ public interface Subscriber
|
|||||||
* failure will be communicated via the supplied
|
* failure will be communicated via the supplied
|
||||||
* <code>ObjectAccessException</code>.
|
* <code>ObjectAccessException</code>.
|
||||||
*
|
*
|
||||||
* @see DObjectManager.subscribeToObject
|
* @see DObjectManager#subscribeToObject
|
||||||
*/
|
*/
|
||||||
public void requestFailed (int oid, ObjectAccessException cause);
|
public void requestFailed (int oid, ObjectAccessException cause);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user