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