//******************************************************************** // Book2.java Author: Lewis and Loftus // // Represents a book. //******************************************************************** class Book2 { protected int pages; //---------------------------------------------------------------- // Sets up the book with the specified number of pages. //---------------------------------------------------------------- public Book2 (int pages) { this.pages = pages; } //---------------------------------------------------------------- // Prints a message concerning the pages of this book. //---------------------------------------------------------------- public void pageMessage () { System.out.println ("Number of pages: " + pages); } }