Report our effective render priority in toString().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2265 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-02-12 05:37:19 +00:00
parent fc11f92371
commit a9ba8fdfe5
@@ -1,5 +1,5 @@
//
// $Id: DisplayObjectInfo.java,v 1.7 2003/02/04 03:33:09 mdb Exp $
// $Id: DisplayObjectInfo.java,v 1.8 2003/02/12 05:37:19 mdb Exp $
package com.threerings.miso.client;
@@ -74,4 +74,14 @@ public class DisplayObjectInfo extends ObjectInfo
{
return false;
}
/**
* Handles the toString-ification of all public members. Derived
* classes can override and include non-public members if desired.
*/
protected void toString (StringBuffer buf)
{
super.toString(buf);
buf.append(", rprio=").append(getPriority());
}
}