Javadoc fixes and cleanups.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@623 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: PlaceManager.java,v 1.23 2001/10/26 01:40:22 mdb Exp $
|
||||
// $Id: PlaceManager.java,v 1.24 2001/11/18 04:27:56 mdb Exp $
|
||||
|
||||
package com.threerings.crowd.server;
|
||||
|
||||
@@ -39,6 +39,21 @@ import com.threerings.crowd.data.*;
|
||||
public class PlaceManager
|
||||
implements MessageListener, OidListListener, ObjectDeathListener
|
||||
{
|
||||
/**
|
||||
* An interface used to allow the registration of standard message
|
||||
* handlers to be invoked by the place manager when particular types
|
||||
* of message events are received.
|
||||
*/
|
||||
public static interface MessageHandler
|
||||
{
|
||||
/**
|
||||
* Invokes this message handler on the supplied event.
|
||||
*
|
||||
* @param event the message event received.
|
||||
*/
|
||||
public void handleEvent (MessageEvent event);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a reference to our place configuration object.
|
||||
*/
|
||||
@@ -336,21 +351,6 @@ public class PlaceManager
|
||||
buf.append(", config=").append(_config);
|
||||
}
|
||||
|
||||
/**
|
||||
* An interface used to allow the registration of standard message
|
||||
* handlers to be invoked by the place manager when particular types
|
||||
* of message events are received.
|
||||
*/
|
||||
protected static interface MessageHandler
|
||||
{
|
||||
/**
|
||||
* Invokes this message handler on the supplied event.
|
||||
*
|
||||
* @param event the message event received.
|
||||
*/
|
||||
public void handleEvent (MessageEvent event);
|
||||
}
|
||||
|
||||
/** A reference to the place object that we manage. */
|
||||
protected PlaceObject _plobj;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user