nickAroberts / cap-4710-project

A database systems project for the class CAP4710
0 stars 0 forks source link

Orders.java needs to extend AbstractTableEntry #1

Open nickAroberts opened 10 years ago

nickAroberts commented 10 years ago

Currently, only the User class in datbase.tables is set up to extend the functionality and methods of the AbstractTableEntry class. The Orders class also needs to extend this functionality (and possibly be renamed to Order, since it technically only represents one entry) in a manner similar to User so that orders can be added to the ORDERS table using the insertRow(AbstractTableEntry) method in AbstractDatabaseManager.

Namely, the following needs to be done for the Orders class:

Be sure to look at User.java to see how all of these steps are taken.