Modified the client state messages to include the chat

instance in case we add a multi-client test.
This commit is contained in:
Paul Speed 2015-11-15 01:22:17 -05:00
parent 9e80d8a7aa
commit 38fe771ed8

View File

@ -93,6 +93,8 @@ public class TestChatClient extends JFrame {
client.addMessageListener(new ChatHandler(), ChatMessage.class);
client.addClientStateListener(new ChatClientStateListener());
client.start();
System.out.println("Started client:" + client);
}
@Override
@ -158,12 +160,12 @@ public class TestChatClient extends JFrame {
@Override
public void clientConnected(Client c) {
System.out.println("clientConnected()");
System.out.println("clientConnected(" + c + ")");
}
@Override
public void clientDisconnected(Client c, DisconnectInfo info) {
System.out.println("clientDisconnected()");
System.out.println("clientDisconnected(" + c + ")");
}
}