/** * Short description of program. * * @author Last Name, First Name * ICS 211 Assignment 16 * Today's Date */ public class LastnameFirstname16 { public static void main(String[] args) { //error checking for commandline input //make a linked list which will store HawaiianTheme objects //read from file and store data from file in your linked list for HawaiianTheme objects //by creating an object for each row of data in your CSV file, //and adding each object to the linked list //use toString() to display the linked list with data from input file //loop through all the objects in the linked list, //use the get() method to get the address of each object and store in a variable, //and change the data fields in this variable using get() and set() methods, //(or use other modifying methods) //use toString() to display the linked list with updated data }//end of main() method }// end of class LastnameFirstname16 /** * Class HawaiianTheme stores and displays the data for each HawaiianTheme object * * @author Your Name */ class HawaiianTheme { //data field #1 //data field #2 //data field #3 //constructor - used to initialize the three data fields //toString() method - returns a String with the three data fields //get() method #1 - gets a data field //set() method #1 - sets a data field //get() method #2 - gets a data field //set() method #2 - sets a data field //get() method #3 - gets a data field //set() method #3 - sets a data field //or write one method to change a data field //method #1 - changes a data field //method #2 - changes a data field //method #3 - changes a data field }//end of class HawaiianTheme