//******************************************************************** // Library.java Author: Lewis and Loftus // // Driver to exercise the BookList collection. //******************************************************************* import BookList; import Book; public class Library { //---------------------------------------------------------------- // Creates a BookList object, adds several books to the list, // then prints them. //---------------------------------------------------------------- public static void main (String[] args) { BookList books = new BookList(); books.add (new Book("The Hitchhiker's Guide to the Galaxy")); books.add (new Book("Jonathan Livingston Seagull")); books.add (new Book("A Tale of Two Cities")); books.add (new Book("Java Software Solutions")); System.out.println (books); } }