tie_output win_output
Pennfoster 402086 – A+ Solution
In this project, you’ll finish the GUI version of the Tic-Tac-Toegame. This project will require you to rewrite the applicationlogic found in the graded project for Lesson 2, but using objectorientation this time. In the instructions, code will be refer-enced from the previous graded projects.Instructions1. In NetBeans, open theTicTacToeGUIGameproject.2. In theTicTacToeGUIGame.javafile, make the followingchanges to theTicTacToeGUIGameclass:a. Add a new method namedgetOutcomethat returnsanOutcomeenumeration. Use thewinOrTiemethod in the Lesson 2 graded project as a guide.b. In thetakeTurnmethod, use thegetOutcomemethod to determine whether to continue the game.
c. In thetakeTurnmethod, display a dialog messagethat displays the winner or tie when the game ends.Optionally, you can clear the board and start a newgame after it ends.Note:You can use the following method to display adialog message in the current window:JOptionPane.showMessageDialog (this, “Both players tie.”);3. Build and run the project. Verify it works as expected.Don’t be discouraged if it doesn’t run as expected rightaway. Try tracing your steps and usingSystem.out.writestatements to figure out where you went wrong