Javadoc updates.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@520 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-22 23:56:01 +00:00
parent 6534413551
commit dc0df5bdf8
2 changed files with 11 additions and 10 deletions
@@ -1,5 +1,5 @@
// //
// $Id: IsoSceneViewModel.java,v 1.16 2001/10/22 18:21:41 shaper Exp $ // $Id: IsoSceneViewModel.java,v 1.17 2001/10/22 23:55:14 mdb Exp $
package com.threerings.miso.scene; package com.threerings.miso.scene;
@@ -15,13 +15,13 @@ import com.threerings.miso.util.MisoUtil;
/** /**
* The iso scene view model provides a holding place for the myriad * The iso scene view model provides a holding place for the myriad
* parameters and bits of data that describe the details of an * parameters and bits of data that describe the details of an isometric
* isometric view of a scene. * view of a scene.
* *
* <p> The member data are public to facilitate speedy referencing by * <p> The member data are public to facilitate speedy referencing by the
* the {@link IsoSceneView} class. The model should only be modified * {@link IsoSceneView} class. The model should only be modified through
* through the constructor's passed-in {@link * the constructor's passed-in {@link Config} object and the accessor
* com.samskivert.util.Config} object and the accessor methods. * methods.
*/ */
public class IsoSceneViewModel public class IsoSceneViewModel
{ {
@@ -1,5 +1,5 @@
// //
// $Id: Table.java,v 1.2 2001/10/19 22:02:36 mdb Exp $ // $Id: Table.java,v 1.3 2001/10/22 23:56:01 mdb Exp $
package com.threerings.parlor.data; package com.threerings.parlor.data;
@@ -44,7 +44,8 @@ public class Table
/** /**
* Creates a new table instance, and assigns it the next monotonically * Creates a new table instance, and assigns it the next monotonically
* increasing table id. The supplied config instance must implement * increasing table id. The supplied config instance must implement
* {@link TableConfig} or a {@link ClassCastException} will be thrown. * {@link TableConfig} or a <code>ClassCastException</code> will be
* thrown.
* *
* @param lobbyOid the object id of the lobby in which this table is * @param lobbyOid the object id of the lobby in which this table is
* to live. * to live.
@@ -83,7 +84,7 @@ public class Table
} }
/** /**
* Once a table is ready to play (see {@link #readyToPlay}), the * Once a table is ready to play (see {@link #readyToStart}), the
* players array can be fetched using this method. It will return an * players array can be fetched using this method. It will return an
* array containing the usernames of all of the players in the game, * array containing the usernames of all of the players in the game,
* sized properly and with each player in the appropriate position. * sized properly and with each player in the appropriate position.