Book.java
- Added comments for Book.java
- Added getter for id
- Added setter for title
- Removed the need of ‘status’ in constructor
- overdueFine(int[]) not commented as it needs to be updated
BookFactory.java
- need for (String status) is removed
Book.java
- Added String type ‘title’
- Added new constructor to include ’title’
Main.java
- Added Main.java (mostly still empty)
BookFactory.java
- Added newBook(String) for the new ‘title’ implementation
- Added getBook(String) to look through ArrayList for Book with the
given ‘title’
- Error handling for both getBook still needs more work