More style changes.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5248 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-22 13:02:13 +00:00
parent 09f8a25876
commit c743432676
38 changed files with 155 additions and 193 deletions
@@ -32,5 +32,5 @@ public interface OccupantOp
/**
* Called with the occupant info for each occupant in the location.
*/
public void apply (OccupantInfo info);
void apply (OccupantInfo info);
}
@@ -142,7 +142,7 @@ public class PlaceRegistry
{
final Iterator<PlaceManager> itr = _pmgrs.values().iterator();
return new Iterator<PlaceObject>() {
public boolean hasNext (){
public boolean hasNext () {
return itr.hasNext();
}
public PlaceObject next () {
@@ -246,7 +246,7 @@ public class PlaceRegistry
throws Exception
{
@SuppressWarnings("unchecked") Class<? extends PlaceManager> clazz =
(Class<? extends PlaceManager>) Class.forName(config.getManagerClassName());
(Class<? extends PlaceManager>)Class.forName(config.getManagerClassName());
return _injector.getInstance(clazz);
}
@@ -37,17 +37,17 @@ public interface CrowdContext extends PresentsContext
/**
* Returns a reference to the location director.
*/
public LocationDirector getLocationDirector ();
LocationDirector getLocationDirector ();
/**
* Returns a reference to the occupant director.
*/
public OccupantDirector getOccupantDirector ();
OccupantDirector getOccupantDirector ();
/**
* Provides access to the chat director.
*/
public ChatDirector getChatDirector ();
ChatDirector getChatDirector ();
/**
* When the client enters a new place, the location director creates a
@@ -64,12 +64,12 @@ public interface CrowdContext extends PresentsContext
* won't be displayed (via a call to this function) until we have
* fully entered the place and are ready for user interaction.
*/
public void setPlaceView (PlaceView view);
void setPlaceView (PlaceView view);
/**
* When the client leaves a place, the place controller will remove
* any place view it set previously via {@link #setPlaceView} with a
* call to this method.
*/
public void clearPlaceView (PlaceView view);
void clearPlaceView (PlaceView view);
}