computeEnteringLocation's signature changed back in r322. Fixed this up to

match, and threw in a bunch of @Overrides so that we won't get bitten by
that again in this particular file.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@336 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Dave Hoover
2007-06-27 22:26:06 +00:00
parent 43d53e73a8
commit b7f32ddd96
@@ -215,7 +215,7 @@ public class StageSceneManager extends SpotSceneManager
listener.requestProcessed(); listener.requestProcessed();
} }
// documentation inherited @Override // documentation inherited
protected void gotSceneData () protected void gotSceneData ()
{ {
super.gotSceneData(); super.gotSceneData();
@@ -258,7 +258,7 @@ public class StageSceneManager extends SpotSceneManager
computeFootprints(); computeFootprints();
} }
// documentation inherited @Override // documentation inherited
protected void didStartup () protected void didStartup ()
{ {
super.didStartup(); super.didStartup();
@@ -270,20 +270,20 @@ public class StageSceneManager extends SpotSceneManager
_ssobj.setStageSceneService(service); _ssobj.setStageSceneService(service);
} }
// documentation inherited @Override // documentation inherited
protected void didShutdown () protected void didShutdown ()
{ {
super.didShutdown(); super.didShutdown();
StageServer.invmgr.clearDispatcher(_ssobj.stageSceneService); StageServer.invmgr.clearDispatcher(_ssobj.stageSceneService);
} }
// documentation inherited @Override // documentation inherited
protected PlaceObject createPlaceObject () protected PlaceObject createPlaceObject ()
{ {
return new StageSceneObject(); return new StageSceneObject();
} }
// documentation inherited @Override // documentation inherited
protected void bodyLeft (int bodyOid) protected void bodyLeft (int bodyOid)
{ {
super.bodyLeft(bodyOid); super.bodyLeft(bodyOid);
@@ -292,7 +292,7 @@ public class StageSceneManager extends SpotSceneManager
_loners.remove(bodyOid); _loners.remove(bodyOid);
} }
// documentation inherited @Override // documentation inherited
protected void updateLocation (BodyObject source, Location loc) protected void updateLocation (BodyObject source, Location loc)
{ {
super.updateLocation(source, loc); super.updateLocation(source, loc);
@@ -401,9 +401,8 @@ public class StageSceneManager extends SpotSceneManager
return false; return false;
} }
// documentation inherited @Override // documentation inherited
protected SceneLocation computeEnteringLocation ( protected SceneLocation computeEnteringLocation (BodyObject body, Portal from, Portal entry)
BodyObject body, Portal entry)
{ {
// sanity check // sanity check
if (entry == null) { if (entry == null) {
@@ -479,7 +478,7 @@ public class StageSceneManager extends SpotSceneManager
return validateLocation(body, loc, false); return validateLocation(body, loc, false);
} }
// documentation inherited @Override // documentation inherited
protected boolean validateLocation (BodyObject source, Location loc) protected boolean validateLocation (BodyObject source, Location loc)
{ {
// TODO: make sure the user isn't warping to hell and gone (and if // TODO: make sure the user isn't warping to hell and gone (and if
@@ -487,7 +486,7 @@ public class StageSceneManager extends SpotSceneManager
return validateLocation(source, (StageLocation)loc, true); return validateLocation(source, (StageLocation)loc, true);
} }
// documentation inherited @Override // documentation inherited
protected boolean canAddBody (ClusterRecord clrec, BodyObject body) protected boolean canAddBody (ClusterRecord clrec, BodyObject body)
{ {
// make sure we have a setting for clusters of this size // make sure we have a setting for clusters of this size
@@ -662,7 +661,7 @@ public class StageSceneManager extends SpotSceneManager
return false; return false;
} }
// documentation inherited @Override // documentation inherited
protected void bodyAdded (ClusterRecord clrec, BodyObject body) protected void bodyAdded (ClusterRecord clrec, BodyObject body)
{ {
super.bodyAdded(clrec, body); super.bodyAdded(clrec, body);
@@ -737,7 +736,7 @@ public class StageSceneManager extends SpotSceneManager
} }
} }
// documentation inherited @Override // documentation inherited
protected void bodyRemoved (ClusterRecord clrec, BodyObject body) protected void bodyRemoved (ClusterRecord clrec, BodyObject body)
{ {
super.bodyRemoved(clrec, body); super.bodyRemoved(clrec, body);
@@ -774,7 +773,7 @@ public class StageSceneManager extends SpotSceneManager
} }
} }
// documentation inherited @Override // documentation inherited
protected void checkCanCluster (BodyObject initiator, BodyObject target) protected void checkCanCluster (BodyObject initiator, BodyObject target)
throws InvocationException throws InvocationException
{ {