Question: JAVA PROJECT. PLEASE DO NOT ANSWER IN C++! Have a data structures project and really need the bonus GUI (All in Java). Thank you very
JAVA PROJECT. PLEASE DO NOT ANSWER IN C++!
Have a data structures project and really need the bonus GUI (All in Java). Thank you very much in advance!



VIDEO STORE Overview For a family or an individual, a favorite place to go on weekends or holidays is to a video store to rent movies. A new video store in your neighborhood is about to open. However, it does not have a program to keep track of its videos and customers. The store managers want someone to write a program for their system so that the video store can function. The program should be able to perform the following operations 1. Rent a video; that is, check out a video 2. Return, or check in, a videdo 3. Create a list of videos owned by the store 4. Show the details of a particular video 5. Print a list of all videos in the store 6. Check whether a particular video is in the store Your task in this project is to write a program for the video store to perform the aforementioned operations. To do so you need to design and implement the following three components: 1- Video Class: define the data and operations of a video object. 2- Video List: maintain a list of all the videos in the store. Use singly-linked list data structure for your implementation. 3- Main program: test and perform the aforementioned operations Components Details Video Class The common things associated with a video are the (see Figure 1) a) Name of the movie b) Names of the stars (limited to two stars in this project) c) Name of the producer d) Name of the director e) Name of the production company f) Number of copies in store VIDEO STORE Overview For a family or an individual, a favorite place to go on weekends or holidays is to a video store to rent movies. A new video store in your neighborhood is about to open. However, it does not have a program to keep track of its videos and customers. The store managers want someone to write a program for their system so that the video store can function. The program should be able to perform the following operations 1. Rent a video; that is, check out a video 2. Return, or check in, a videdo 3. Create a list of videos owned by the store 4. Show the details of a particular video 5. Print a list of all videos in the store 6. Check whether a particular video is in the store Your task in this project is to write a program for the video store to perform the aforementioned operations. To do so you need to design and implement the following three components: 1- Video Class: define the data and operations of a video object. 2- Video List: maintain a list of all the videos in the store. Use singly-linked list data structure for your implementation. 3- Main program: test and perform the aforementioned operations Components Details Video Class The common things associated with a video are the (see Figure 1) a) Name of the movie b) Names of the stars (limited to two stars in this project) c) Name of the producer d) Name of the director e) Name of the production company f) Number of copies in store
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
