Forgot to check this one in yesterday.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3928 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-09 02:48:14 +00:00
parent bdfecce767
commit 15cf89770f
+36
View File
@@ -0,0 +1,36 @@
package com.threerings.io {
import com.threerings.util.SimpleMap;
/**
* Maintains a set of translations between actionscript class names
* and server (Java) class names.
*/
public class Translations
{
public static function getToServer (asName :String) :String
{
var javaName :String = (_toServer.get(asName) as String);
return (javaName == null) ? asName : javaName;
}
public static function getFromServer (javaName :String) :String
{
var asName :String = (_fromServer.get(javaName) as String);
return (asName == null) ? javaName : asName;
}
public static function addTranslation (
asName :String, javaName :String) :void
{
_toServer.put(asName, javaName);
_fromServer.put(javaName, asName);
}
/** A mapping of actionscript names to java names. */
protected static var _toServer :SimpleMap = new SimpleMap();
/** A mapping of java names to actionscript names. */
protected static var _fromServer :SimpleMap = new SimpleMap();
}
}