Renamed OccupantManager to OccupantDirector.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1239 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2002-04-15 14:38:46 +00:00
parent a6646a939a
commit f6fedf5bdf
10 changed files with 43 additions and 43 deletions
@@ -1,5 +1,5 @@
//
// $Id: TestClient.java,v 1.7 2002/03/28 22:32:33 mdb Exp $
// $Id: TestClient.java,v 1.8 2002/04/15 14:38:45 shaper Exp $
package com.threerings.parlor;
@@ -29,7 +29,7 @@ public class TestClient
// create the handles on our various services
_client = new Client(creds, this);
_locdir = new LocationDirector(_ctx);
_occmgr = new OccupantManager(_ctx);
_occdir = new OccupantDirector(_ctx);
_pardtr = new ParlorDirector(_ctx);
// register ourselves as the invitation handler
@@ -159,9 +159,9 @@ public class TestClient
return _locdir;
}
public OccupantManager getOccupantManager ()
public OccupantDirector getOccupantDirector ()
{
return _occmgr;
return _occdir;
}
public void setPlaceView (PlaceView view)
@@ -177,7 +177,7 @@ public class TestClient
protected Client _client;
protected LocationDirector _locdir;
protected OccupantManager _occmgr;
protected OccupantDirector _occdir;
protected ParlorDirector _pardtr;
protected ParlorContext _ctx;