import java.awt.*;
import java.applet.*;

/* <applet code="fourarea" width="400" height="400">
   </applet>  */

// Copyright Samar Abbas 2000

public class fourarea extends Applet {
String s = 
       "This is a very long message"+
       "It should wrap when there is"+
       "no horizontal scrollbar.";

public void init() {
  TextArea t1 = new TextArea (s, 4, 15, TextArea.SCROLLBARS_NONE);
  TextArea t2 = new TextArea (s, 4, 15, TextArea.SCROLLBARS_BOTH);
  TextArea t3 = new 
      TextArea (s, 4, 15, TextArea.SCROLLBARS_HORIZONTAL_ONLY);
  TextArea t4 = new 
      TextArea (s, 4, 15, TextArea.SCROLLBARS_VERTICAL_ONLY);
    add(t1);
    add(t2);
    add(t3);
    add(t4);
  }
}
