Introduction
This assignment asks you to write and compile a simple, but complete class specification. You should also write a test driver, a main() method, that demonstrates that it functions correctly.
The Textbook class
Please implement a class specification for a class that models aspects of a textbook might be useful for an on-line ordering system:
- The textbook's title. This shall be set at initalization and accessible, but unchangeable.
- The textbook's author. This shall be set at initalization and accessible, but unchangeable.
- The textbook's number of pages. This shall be set at initalization and accessible, but unchangeable.
- The textbook's price. It may be set at initalization (or not) and can be changed later. It is also accessible.
- Reader's comments. These can be augmented, but not changed. In other words, comments can be added, but not removed or changed.
- A method, public String toString() that returns a String which presents the members of the class in a nicely formatted way.
Notes