/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package lab2stuff; /** * * @author jcmt */ public class Book { //ex. ISBN Deitel Java 9th 978-0-13-257566-9 //ex. ISBN BlueJ 978-0-13-249266-9 //ex. ISBN To Kill a Mbird 978-0-44-631078-9 //ex. ISBN Qatar pub 99921-58-10-7 //ex. ISBN You can' (Japan)978-4-04-427101-5 String iSBN = new String(); //include dashes String title = new String(); String author = new String(); //last, first float price; int pubYr; boolean checkedOut; LibraryDate dueDate = new LibraryDate(); LibraryDate current = new LibraryDate(); current.compareDates(dueDate); }