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
@@ -30,7 +30,7 @@ public class EntryRemovedEvent extends NamedEvent
*/
public function EntryRemovedEvent (
targetOid :int = 0, name :String = null, key :Object = null,
oldEntry :DSetEntry = null)
oldEntry :DSet_Entry = null)
{
super(targetOid, name);
_key = key;
@@ -50,7 +50,7 @@ public class EntryRemovedEvent extends NamedEvent
/**
* Returns the entry that was in the set prior to being updated.
*/
public function getOldEntry () :DSetEntry
public function getOldEntry () :DSet_Entry
{
return _oldEntry;
}
@@ -104,6 +104,6 @@ public class EntryRemovedEvent extends NamedEvent
}
protected var _key :Object;
protected var _oldEntry :DSetEntry = UNSET_OLD_ENTRY;
protected var _oldEntry :DSet_Entry = UNSET_OLD_ENTRY;
}
}