toString()stravaganza!

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@77 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-07-19 19:30:14 +00:00
parent 41488822dc
commit e912b18e27
18 changed files with 105 additions and 20 deletions
@@ -1,5 +1,5 @@
//
// $Id: ObjectResponse.java,v 1.9 2001/07/19 07:09:16 mdb Exp $
// $Id: ObjectResponse.java,v 1.10 2001/07/19 19:30:14 mdb Exp $
package com.threerings.cocktail.cher.net;
@@ -55,6 +55,11 @@ public class ObjectResponse extends DownstreamMessage
_dobj = (DObject)DObjectFactory.readFrom(in);
}
public String toString ()
{
return "[type=ORSP, msgid=" + messageId + ", obj=" + _dobj + "]";
}
/** The object which is associated with this response. */
protected DObject _dobj;
}