Final answer:
The student's task involves adding features to a JavaFX application, including using Contact objects with name and phone attributes, implementing file I/O for data persistence, and adding a button to refresh displayed data.
Step-by-step explanation:
The student's question relates to enhancing a JavaFX application with three new features involving object-oriented programming, file I/O, and GUI interaction. Feature A requires modifying the program to use objects for representing friends instead of plain strings, implying the creation of a new class with attributes for name and phone number.
Feature B involves reading initial data from a file at the start and saving updates to the same file upon closure of the application, which tests knowledge of file handling in Java. Feature C demands the addition of a Refresh button on the play screen that, when clicked, will regenerate another friend's name to play with, showcasing event-driven programming skills.
Steps to Implement Feature A:
Create a new class Contact with private attributes for name and phone number.
Modify existing code to use Contact objects instead of strings.
Update the GUI to display and edit the new object fields.
Steps for Feature B:
Utilize file I/O operations to read data from a file on application start.
Make sure to update the file upon exiting the program with current data.
Steps for Feature C:
Add a new button to the GUI in the play screen.
Assign an event handler that regenerates and displays a new friend's contact when pressed.