Looking for Java experts please

In this assignment you will bring together many of the concepts covered in the course.

Project requirements:

Create an object class for something of interest to you. (you will need at least 5 data items)

For example, a Car class, which will contain information about the vehicle

  • Make

  • Model

  • Year

  • Color

  • Price

Use a constructor to populate the class object and provide methods to retrieve each of the class attributes.

From a text file, read data and create an object of this class, which is then stored in an array of these object types. (at least 10 instances)

Provide a GUI to allow the selection of a record based on at least two of the data values and display the data in a messagebox. If the item is not found, then display a suitable message.