Chris Johnson, Index
The TextField Class



/*
        * Author: C.W. Johnson
        * Date: 11/10/98
        * Simple text area applet
        */
 

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

public class TextDemo2 extends Applet {
    TextArea textArea;
    

    public void init() {
        textArea = new TextArea(3, 30);
        
        add(textArea);
    }
}


forward