/** * Short description of program. * * @author Last Name, First Name * ICS 211 Assignment 17 * Today's Date */ public class LastnameFirstname17 { 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 //ask the user to enter the row number of the object to be removed from the linked list //include error checking for non-integers and integers out of range //display the object that will be deleted //and then remove the object from the linked list //use toString() to display the linked list with deleted data }//end of main() method }// end of class LastnameFirstname17 /** * 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 }//end of class HawaiianTheme