Fixes for asdoc (which is a piece of shit, kthx).

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@807 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2009-03-30 23:09:12 +00:00
parent 3b70248329
commit ae63902203
2 changed files with 13 additions and 22 deletions
@@ -24,11 +24,9 @@ package com.threerings.whirled.client.persist {
import flash.errors.IOError;
import com.threerings.whirled.data.SceneModel;
import com.threerings.whirled.util.NoSuchSceneError;
/**
* The scene repository provides access to a persistent repository of
* scene information.
* The scene repository provides access to a persistent repository of scene information.
*
* @see SceneModel
*/
@@ -37,30 +35,26 @@ public interface SceneRepository
/**
* Fetches the model for the scene with the specified id.
*
* @exception IOException thrown if an error occurs attempting to load
* the scene data.
* @exception NoSuchSceneException thrown if no scene exists with the
* specified scene id.
* @exception IOError thrown if an error occurs attempting to load the scene data.
* @exception NoSuchSceneError thrown if no scene exists with the specified scene id.
*/
function loadSceneModel (sceneId :int) :SceneModel;
//throws IOException, NoSuchSceneException;
//throws IOError, NoSuchSceneError;
/**
* Updates or inserts this scene model as appropriate.
*
* @exception IOException thrown if an error occurs attempting to
* access the repository.
* @exception IOError thrown if an error occurs attempting to access the repository.
*/
function storeSceneModel (model :SceneModel) :void;
//throws IOException;
//throws IOError;
/**
* Deletes the specified scene model from the repository.
*
* @exception IOException thrown if an error occurs attempting to
* access the repository.
* @exception IOError thrown if an error occurs attempting to access the repository.
*/
function deleteSceneModel (sceneId :int) :void;
//throws IOException;
//throws IOError;
}
}
@@ -22,17 +22,14 @@
package com.threerings.whirled.data {
import com.threerings.crowd.data.PlaceConfig;
import com.threerings.whirled.client.SceneController;
/**
* The default scene config simply causes the default scene manager and
* controller to be created. A user of the Whirled services would most
* likely extend the default scene config.
* The default scene config simply causes the default scene manager and controller to be created. A
* user of the Whirled services would most likely extend the default scene config.
*
* <p> Note that this place config won't even work on the client side
* because it instantiates a {@link SceneController} which is an abstract
* class. It is used only for testing the server side and as a placeholder
* in case standard scene configuration information is one day needed.
* <p> Note that this place config won't even work on the client side because it instantiates a
* SceneController which is an abstract class. It is used only for testing the server side and as a
* placeholder in case standard scene configuration information is one day needed.
*/
public class DefaultSceneConfig extends PlaceConfig
{