Added a toString() implementation.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@293 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-21 19:37:21 +00:00
parent 7cac50ee00
commit fe7bfdc67f
@@ -1,5 +1,5 @@
//
// $Id: BodyObject.dobj,v 1.3 2001/08/04 01:13:36 mdb Exp $
// $Id: BodyObject.dobj,v 1.4 2001/08/21 19:37:21 mdb Exp $
package com.threerings.cocktail.party.data;
@@ -33,4 +33,11 @@ public class BodyObject extends ClientObject
{
requestAttributeChange(LOCATION, new Integer(location));
}
protected void toString (StringBuffer buf)
{
super.toString(buf);
buf.append(", username=").append(username);
buf.append(", location=").append(location);
}
}