Hello, dear friend, you can consult us at any time if you have any questions, add WeChat: THEend8_
This assignment is worth 10% of your final grade and has 100 marks in total.
Read this entire brief before starting your assignment.
Brief
Design and implement a film database application using MVC architecture. Use the provided FruitList GUI as a starting point.
Functionality
Your application allows the user to display, add to and search a list of films stored in a text file database via a GUI:
• View the list of all films stored in the database
• Add new films to the list
• Delete existing films from the list
• Filter the list of films according to a search term
• Read a text file database when the application starts
• Save the text file database when the application exits
Starting point
Start by downloading the assignment4.zip file available on Blackboard and import the project into your Eclipseworkspace. There is a fruitapp package containing five classes corresponding to the Model (Fruit and FruitList) View (FruitListPanel) and Controller (FruitListApp). The ReadFruitListData class has two static methods to load and read Fruit objects in a FruitList from the file fruitlistdata/fruits.txt
You will use these files as a starting point to creating your own film database application