educational course/tutorialoutlet.com educational course/tutorialoutlet.com | Page 65

( instantiates ticket array object and initializes ticket count) // method to add ticket object to ticket array goes here( with comments and parameter tag) // method to read ticket data from file goes here(-includes comments with parameter and return tags-creates a ticket object for each ticket and-calls previous method to add the object to the ticket array) // method to calculate fines / store into array goes here( with comments and parameter tag) // method to create the fines report goes here( with comments and parameter tag) } /** * Description of program, and author and version tags */ public class TicketAnalysis { public static void main( String args) { // code to define variables & amp; display program description // Loop: // code to instantiate TicketArrayImpl object // Loop: // code to read filename and try to read data from the file // code to create fines array // code to call other methods } // three methods to calculate the fines average, low, and high go here( includes comments with parameter and return tags) // method to display a ticket summary( with comments and parameter tags) }---------------------------------------------------------------------------------------