/** * A simple model of a book * * @author CSC 142 */ public class Book { // the title of the book private String title; /** * Creates a book given its title * * @param theTitle * the title of the book */ public Book(String theTitle) { this.title = theTitle; } /** * Returns the title of the book * * @return the title of the book */ public String getTitle() { return this.title; } }