I'm using SuperCSV to parse a CSV file. The problem i'm having is I have 3 other classes - Office, Vehicle and Car.
I've made OFfice The Grasp Creator so it creates objects of type Vehicle, and Vehicle exntends Car.
The class called ImportCSV implements SuperCSV library. ImportCSV needs access to all the methods in OFfice, Vehicle and Car to parse the CSV file otherwise i'm getting the error - SuperCsvReflectionException.
How can I give access to the Class ImportCSV to all the methods of 3 different classes, or any suggestions on how to go about this please?