Added clientObjectDidChange() implementation.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1766 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2002-10-01 04:44:40 +00:00
parent 383a1ec550
commit 1ee866e1e5
4 changed files with 24 additions and 4 deletions
@@ -1,5 +1,5 @@
//
// $Id: TestClient.java,v 1.10 2002/04/15 14:38:45 shaper Exp $
// $Id: TestClient.java,v 1.11 2002/10/01 04:44:39 shaper Exp $
package com.threerings.crowd.client;
@@ -58,6 +58,11 @@ public class TestClient
_ctx.getLocationDirector().moveTo(15);
}
public void clientObjectDidChange (Client client)
{
Log.info("Client object did change [client=" + client + "].");
}
public void clientFailedToLogon (Client client, Exception cause)
{
Log.info("Client failed to logon [client=" + client +
@@ -1,5 +1,5 @@
//
// $Id: TestClient.java,v 1.9 2002/08/14 19:07:59 mdb Exp $
// $Id: TestClient.java,v 1.10 2002/10/01 04:44:39 shaper Exp $
package com.threerings.parlor;
@@ -75,6 +75,11 @@ public class TestClient
}
}
public void clientObjectDidChange (Client client)
{
Log.info("Client object did change [client=" + client + "].");
}
public void clientFailedToLogon (Client client, Exception cause)
{
Log.info("Client failed to logon [client=" + client +
@@ -1,5 +1,5 @@
//
// $Id: TestClient.java,v 1.14 2002/08/14 19:07:59 mdb Exp $
// $Id: TestClient.java,v 1.15 2002/10/01 04:44:40 shaper Exp $
package com.threerings.presents.client;
@@ -52,6 +52,11 @@ public class TestClient
service.getTestOid(client, this);
}
public void clientObjectDidChange (Client client)
{
Log.info("Client object did change [client=" + client + "].");
}
public void clientDidLogoff (Client client)
{
Log.info("Client did logoff [client=" + client + "].");
@@ -1,5 +1,5 @@
//
// $Id: TestClient.java,v 1.12 2002/04/15 14:38:46 shaper Exp $
// $Id: TestClient.java,v 1.13 2002/10/01 04:44:40 shaper Exp $
package com.threerings.whirled;
@@ -70,6 +70,11 @@ public class TestClient
_ctx.getSceneDirector().moveTo(0);
}
public void clientObjectDidChange (Client client)
{
Log.info("Client object did change [client=" + client + "].");
}
public void clientFailedToLogon (Client client, Exception cause)
{
Log.info("Client failed to logon [client=" + client +