The Data class has two methods delete and add. It is not stated in the requirements that the GUI should allow for users to be allowed to delete records or add new flights.The following is from the scdj requirements document:
a graphical user interface for viewing flight information and booking a flight
What are we supposed to do. Add this functionality to the GUI even though it is not specified or just ignore these two methods?
Conor Allen
Ranch Hand
Joined: Apr 27, 2001
Posts: 32
posted
0
My feeling is that you just ignore them ... if it is not in the spec .... don't do it ... Anyone else?
[This message has been edited by Conor Allen (edited June 08, 2001).]
Karl Fu
Ranch Hand
Joined: Mar 26, 2001
Posts: 41
posted
0
Yup, i think you can safely ignore them in your GUI, but those functionality should make available in your implementation (not gui) Karl
Nigel Browne
Ranch Hand
Joined: May 15, 2001
Posts: 673
posted
0
Originally posted by Karl Fu: ...but those functionality should make available in your implementation (not gui) Karl
Does this mean we need a main method in the Data class to handle command line args?
Peter den Haan
author
Ranch Hand
Joined: Apr 20, 2000
Posts: 3252
posted
0
Originally posted by Nigel Browne: Does this mean we need a main method in the Data class to handle command line args?
No. Just that your Data class (and its remote version) must be fully functional. Apart from that, the maintenance part of the application is simply outside the scope of the assignment. You don't have to pay any attention to it. - Peter
[This message has been edited by Peter den Haan (edited June 08, 2001).]