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