I have instructions in my assignment that reads
Your data access class must be called "Data.java", must be in a package called "suncertify.db", and must implement the following interface:
but the class I extended is becoming too-much lengthy, 168 lines and I haven't even implemented single method given by the Sun's interface
since I know from my previous experience it'll soo become hard to manage if I have class much long(say 300 lines) what are the options I have, can I exetnd the Data.java class and provide added functionality, I don't understand what exctly they mean by data-access, is it the class which provides database connection or something else?
some of you suggested in this forum to extend the interface provided by sun , add additional methods required and then extend that interface to provide concrete class, is it going to violate the instructions given in my assignment?B&S 2.1.1