Skip to content

Instantly share code, notes, and snippets.

@tabrindle
Created October 4, 2013 20:41
Show Gist options
  • Save tabrindle/6832374 to your computer and use it in GitHub Desktop.
Save tabrindle/6832374 to your computer and use it in GitHub Desktop.
// TCPServerTest.java
// Test the TCPServerGUI application. GUI Version
import javax.swing.JFrame;
public class TCPServerTest
{
public static void main( String args[] )
{
TCPServerGUI application = new TCPServerGUI(); // create server
application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
application.runServer(); // run server application
} // end main
} // end class TCPServerTest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment