class Database { public static void main (String []args) { /* * This should be your database's user interface. It should * let the user add, delete, and find items. It should also * let the user do other things specific to your record type, * such as change certain values. * * It should also let the user print the whole database in * sorted order * * These features should exhibit your new LinkedList * methods: insertInOrder(), remove(), and find(), * as appropriate. */ } }