/**
 * A driver for testing the Document and FormattedDocument
 * classes
 */
public class Driver
{
    /**
     * The entry point of the application
     *
     * @param args     The command line arguments
     */
    public static void main(String[] args)
    {
		Document                 doc;
		String                   text;
	
	
		text = "George is a little monkey, "+
	               "and all monkeys are curious. "+
	               "But no monkey is as curious "+
	               "as George.";
	
	
		doc = new Document(text);
	
		System.out.println();
		System.out.println(doc.getDescription());
		System.out.println();
		System.out.println(doc.getText());
    }
}
