/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package lab2stuff; import java.util.ArrayList; /** * * @author jcmt */ public class Library { ArrayList contents = new ArrayList(); // IMplement list of patrons // Implement list of employees public boolean AddBook(Book nuBook) { } }