//******************************************************************** // Textbook.java Author: yourname // // Represents a textbook - with a title, author and edition number. //******************************************************************** public class Textbook { private String title; private String author; private int edition; public Textbook(String title, String author, int edition) { this.title = title; this.author = author; this.edition = edition; } public String toString() { return title + " by " + author + ", edition " + edition; } }