// Written by: Darren Gates & Ray Klefstad // Date: January 2000 // School: U.C. Irvine import java.awt.*; import java.applet.*; public class TextAreasExample extends Applet { public void init() { String message = "When in the course of human events\n"; message.concat("it becomes necessary for one people\n"); message.concat("to dissolve the political bands which\n"); message.concat("have connected them with another..."); TextArea myTextArea = new TextArea(message, 10, 35); add(myTextArea); } }