Question: This is java problem. I have writen the codes i am not sure what i do wrong, please fix it or add to make it
This is java problem. I have writen the codes i am not sure what i do wrong, please fix it or add to make it works. I am not sure what did i do wrong and why it wont compile this is the direction:
-The LibraryBook class is a Book, but library books also have a call number, and the call number allows books to be ordered on the shelves. (The ordering is given by a compareTo specified in the Comparable interface. In addition, because many library books can circulate (be checked out and returned), each library book has a circulation status (e.g., on shelf, checked out, permanently in reference collection).

this is my code i am not sure the extends or impelement is correct. Comparable

Class LibraryBook The LibraryBook class models information common for library books. In addition to author, title, and ISBN, library books have call numbers, and library books are stored on the shelves in order by call number. Further, many library books may be able to circulate. In addition to fields and methods of books, any library book has: Fields: call number Constructors and methods: a constructor using 4 parameters for an author, title, ISBN number, and call number . . getters and setters checkout handles processing for a patron to check out a book. A due date also is recorde . . returned handles processing for when a book is returned after having been checked out. circulationStatus indicates whether the book is on the shelves, checked, or non-circulating in the reference collection . .compareTo allows comparison/ordering of library books, following the format Java's Comparable
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
