Uses of Class
librarytest.LibraryDate

Uses of LibraryDate in librarytest
 

Methods in librarytest that return LibraryDate
 LibraryDate LibraryDate.addDays(int numdays)
          Add a number of days to the current date
 LibraryDate Item.getDueDate()
           
 LibraryDate Patron.getLastCheckOut()
           
 

Methods in librarytest with parameters of type LibraryDate
 boolean Library.checkOutItem(double cISBN, int cPatID, LibraryDate cDue)
          3) Check out an item (input ISBN, the due date, the patron ID)
 void Item.setDueDate(LibraryDate dueDate)
           
 void Patron.setLastCheckOut(LibraryDate lastCheckOut)
           
 

Constructors in librarytest with parameters of type LibraryDate
Item(double ISBN, java.lang.String title, ItemType type, java.lang.String publisher, int pageInfoHowMany, double price, int publicationYear, boolean checkedOut, int patronID, LibraryDate dueDate)
           
Patron(int patronID, LibraryDate lastCheckOut)
          Constructor with inputs
Patron(int patronID, LibraryDate lastCheckOut, java.lang.String firstName, java.lang.String lastName, Address addressPerson, Gender genderPerson)