CMIS 340 Assignment 2 Turn your Tic-tac-toe into an applet. Use a JTextField to get the user's coordinates input. Follow the examples from chapter 6 (figures 6.9 and 6.16) about attaching a GUI to an applet's container and registering an ActionListener. Use a StringTokenizer to get split a string into two: String row_col; //gets a value from somewhere... StringTokenizer two_ints = new StringTokenizer(row_col); i = Integer.parseInt(two_ints.nextToken()); j = Integer.parseInt(two_ints.nextToken()); Draw the board in the applet. See http://sensei.ad.umuc.edu/dwills/cmis340/Tictactoe3.html for a general idea of what it should look like.