/** * Represents a single quotation. * @author John Panzer * @version 1.0 */ public class Quote { /** The internal representation -- currently a simple string. */ private String _text; /** Creates a new quote, given a string */ public Quote(String s) {_text = s;} /** Returns a string representation of the quotation */ public String toString() {return _text;} };