Some bits and bobs: there are ResourceBundle and Locale classes in the mx

package, use those. The ResourceBundle stuff is not quite working now due
to bugs in beta3, but I'll loop back to it later.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4126 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-18 22:39:01 +00:00
parent 8de54d537c
commit 0ac15b0e3c
6 changed files with 32 additions and 34 deletions
+4 -2
View File
@@ -4,9 +4,11 @@ package com.threerings.util {
* An interface we can use to implement equals(), which is standard and
* very useful in Java.
*/
public interface Equalable {
public interface Equalable
{
/**
* Return true to see if this instance is equal to the specified object.
* Returns true to indicate that the specified object is equal to
* this instance.
*/
function equals (other :Object) :Boolean;
}