Include our class name in toString().
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2253 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,8 +1,10 @@
|
|||||||
//
|
//
|
||||||
// $Id: PlaceConfig.java,v 1.4 2002/07/23 05:54:52 mdb Exp $
|
// $Id: PlaceConfig.java,v 1.5 2003/02/11 06:00:51 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.crowd.data;
|
package com.threerings.crowd.data;
|
||||||
|
|
||||||
|
import com.samskivert.util.StringUtil;
|
||||||
|
|
||||||
import com.threerings.io.SimpleStreamableObject;
|
import com.threerings.io.SimpleStreamableObject;
|
||||||
import com.threerings.crowd.client.PlaceController;
|
import com.threerings.crowd.client.PlaceController;
|
||||||
|
|
||||||
@@ -39,4 +41,12 @@ public abstract class PlaceConfig extends SimpleStreamableObject
|
|||||||
* knowing that it is never used.
|
* knowing that it is never used.
|
||||||
*/
|
*/
|
||||||
public abstract String getManagerClassName ();
|
public abstract String getManagerClassName ();
|
||||||
|
|
||||||
|
// documentation inherited
|
||||||
|
protected void toString (StringBuffer buf)
|
||||||
|
{
|
||||||
|
buf.append("type=").append(StringUtil.shortClassName(this));
|
||||||
|
buf.append(", ");
|
||||||
|
super.toString(buf);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user