Javadoc edits.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@576 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: ParlorCodes.java,v 1.9 2001/10/23 20:23:29 mdb Exp $
|
||||
// $Id: ParlorCodes.java,v 1.10 2001/10/26 01:40:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
@@ -64,12 +64,12 @@ public interface ParlorCodes extends InvocationCodes
|
||||
|
||||
/** The response identifier for a table created response. This is
|
||||
* mapped by the invocation services to a call to {@link
|
||||
* TableManager#handleTableCreated}. */
|
||||
* TableDirector#handleTableCreated}. */
|
||||
public static final String TABLE_CREATED_RESPONSE = "TableCreated";
|
||||
|
||||
/** The response identifier for a create failed response. This is
|
||||
* mapped by the invocation services to a call to {@link
|
||||
* TableManager#handleCreateFailed}. */
|
||||
* TableDirector#handleCreateFailed}. */
|
||||
public static final String CREATE_FAILED_RESPONSE = "CreateFailed";
|
||||
|
||||
/** The message identifier for a join table request. */
|
||||
@@ -77,7 +77,7 @@ public interface ParlorCodes extends InvocationCodes
|
||||
|
||||
/** The response identifier for a join failed response. This is mapped
|
||||
* by the invocation services to a call to {@link
|
||||
* TableManager#handleJoinFailed}. */
|
||||
* TableDirector#handleJoinFailed}. */
|
||||
public static final String JOIN_FAILED_RESPONSE = "JoinFailed";
|
||||
|
||||
/** The message identifier for a leave table request. */
|
||||
@@ -85,7 +85,7 @@ public interface ParlorCodes extends InvocationCodes
|
||||
|
||||
/** The response identifier for a leave failed response. This is
|
||||
* mapped by the invocation services to a call to {@link
|
||||
* TableManager#handleLeaveFailed}. */
|
||||
* TableDirector#handleLeaveFailed}. */
|
||||
public static final String LEAVE_FAILED_RESPONSE = "LeaveFailed";
|
||||
|
||||
/** An error code returned when a user requests to join a table that
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: ParlorService.java,v 1.10 2001/10/23 23:47:01 mdb Exp $
|
||||
// $Id: ParlorService.java,v 1.11 2001/10/26 01:40:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
@@ -99,7 +99,7 @@ public class ParlorService implements ParlorCodes
|
||||
|
||||
/**
|
||||
* You probably don't want to call this directly, but want to call
|
||||
* {@link TableManager#createTable}. Requests that a new table be
|
||||
* {@link TableDirector#createTable}. Requests that a new table be
|
||||
* created.
|
||||
*
|
||||
* @param client a connected, operational client instance.
|
||||
@@ -122,7 +122,7 @@ public class ParlorService implements ParlorCodes
|
||||
|
||||
/**
|
||||
* You probably don't want to call this directly, but want to call
|
||||
* {@link TableManager#joinTable}. Requests that the current user
|
||||
* {@link TableDirector#joinTable}. Requests that the current user
|
||||
* be added to the specified table at the specified position.
|
||||
*
|
||||
* @param client a connected, operational client instance.
|
||||
@@ -148,7 +148,7 @@ public class ParlorService implements ParlorCodes
|
||||
|
||||
/**
|
||||
* You probably don't want to call this directly, but want to call
|
||||
* {@link TableManager#leaveTable}. Requests that the current user
|
||||
* {@link TableDirector#leaveTable}. Requests that the current user
|
||||
* be removed from the specified table.
|
||||
*
|
||||
* @param client a connected, operational client instance.
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
//
|
||||
// $Id: SeatednessObserver.java,v 1.1 2001/10/23 20:23:29 mdb Exp $
|
||||
// $Id: SeatednessObserver.java,v 1.2 2001/10/26 01:40:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
/**
|
||||
* Entites that wish to hear about when we sit down at a table or stand up
|
||||
* from a table can implement this interface and register themselves with
|
||||
* the {@link TableManager}.
|
||||
* the {@link TableDirector}.
|
||||
*/
|
||||
public interface SeatednessObserver
|
||||
{
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
//
|
||||
// $Id: TableObserver.java,v 1.1 2001/10/23 02:22:16 mdb Exp $
|
||||
// $Id: TableObserver.java,v 1.2 2001/10/26 01:40:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
import com.threerings.parlor.data.Table;
|
||||
|
||||
/**
|
||||
* The {@link TableManager} converts distributed object events into higher
|
||||
* level callbacks to implementers of this interface, which are expected
|
||||
* to render these events sensically in a user interface.
|
||||
* The {@link TableDirector} converts distributed object events into
|
||||
* higher level callbacks to implementers of this interface, which are
|
||||
* expected to render these events sensically in a user interface.
|
||||
*/
|
||||
public interface TableObserver
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TableManager.java,v 1.3 2001/10/25 23:02:17 mdb Exp $
|
||||
// $Id: TableManager.java,v 1.4 2001/10/26 01:40:22 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
@@ -34,8 +34,8 @@ import com.threerings.parlor.game.GameManager;
|
||||
* A table manager can be used by a place manager to take care of the
|
||||
* management of a table matchmaking service in the place managed by the
|
||||
* place manager. The place manager need instantiate a table manager and
|
||||
* implement the {@link TableLobbyManager} interface to provide access to
|
||||
* the table manager for the associated invocation services.
|
||||
* implement the {@link TableManagerProvider} interface to provide access
|
||||
* to the table manager for the associated invocation services.
|
||||
*/
|
||||
public class TableManager
|
||||
implements ParlorCodes, PlaceRegistry.CreationObserver, OidListListener
|
||||
|
||||
Reference in New Issue
Block a user