Created
October 4, 2013 20:41
-
-
Save tabrindle/6832374 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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