Let's name inner classes with an "_" where Java puts a "$", and do

automatic name translation for those names.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4129 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-19 02:23:47 +00:00
parent a2644d5c04
commit 7ec9c8d642
16 changed files with 46 additions and 58 deletions
@@ -55,7 +55,7 @@ public class LocationMarshaller extends InvocationMarshaller
// documentation inherited from interface
public function moveTo (arg1 :Client, arg2 :int, arg3 :MoveListener) :void
{
var listener3 :MoveMarshaller = new MoveMarshaller();
var listener3 :LocationMarshaller_MoveMarshaller = new LocationMarshaller_MoveMarshaller();
listener3.listener = arg3;
sendRequest(arg1, MOVE_TO, [ new Integer(arg2), listener3 ]);
}
@@ -4,7 +4,7 @@ import com.threerings.presents.data.ListenerMarshaller;
import com.threerings.crowd.client.MoveListener
public class MoveMarshaller extends ListenerMarshaller
public class LocationMarshaller_MoveMarshaller extends ListenerMarshaller
{
/** The method id used to dispatch {@link #moveSucceeded}
* responses. */
@@ -24,7 +24,7 @@ package com.threerings.crowd.data {
import com.threerings.util.Integer;
import com.threerings.util.Name;
import com.threerings.presents.dobj.DSetEntry;
import com.threerings.presents.dobj.DSet_Entry;
import com.threerings.crowd.data.BodyObject;
@@ -48,7 +48,7 @@ import com.threerings.io.ObjectOutputStream;
* is requested.
*/
public class OccupantInfo
implements DSetEntry
implements DSet_Entry
{
/** Constant value for {@link #status}. */
public static const ACTIVE :int = 0;
@@ -77,7 +77,7 @@ public class OccupantInfo
return bodyOid.value;
}
// documentation inherited from interface DSetEntry
// documentation inherited from interface DSet_Entry
public function getKey () :Object
{
return bodyOid;
@@ -29,7 +29,7 @@ import com.threerings.io.ObjectOutputStream;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.DSet;
import com.threerings.presents.dobj.DSetEntry;
import com.threerings.presents.dobj.DSet_Entry;
import com.threerings.presents.dobj.OidList;
import com.threerings.crowd.Log;
@@ -121,7 +121,7 @@ public class PlaceObject extends DObject
* <code>occupantInfo</code> set. The set will not change until the event is
* actually propagated through the system.
*/
public function addToOccupantInfo (elem :DSetEntry) :void
public function addToOccupantInfo (elem :DSet_Entry) :void
{
requestEntryAdd(OCCUPANT_INFO, elem);
}
@@ -141,7 +141,7 @@ public class PlaceObject extends DObject
* <code>occupantInfo</code> set. The set will not change until the event is
* actually propagated through the system.
*/
public function updateOccupantInfo (elem :DSetEntry) :void
public function updateOccupantInfo (elem :DSet_Entry) :void
{
requestEntryUpdate(OCCUPANT_INFO, elem);
}