************************************************************ This directory holds: Example 33 -- A GUI-based client/server counter The following description were written by the CS staff ************************************************************ .\client\ -- A graphical counter client CounterClient.java -- The main class for the GUI client. This client connects to port 1966 on the local machine. ClientUI.java -- The frame for the UI StreamListener.java -- A thread to listen for responces from the server. .\server\ -- A counter server....uses a very simple protocol Server.java -- The main class for the counter server. This server listens to port 1966. Connection.java -- A thread which is created to handle a connection. CounterDriver.java -- Take the simple protocol and makes the calls to Counter.java Counter.java -- The counter.