FileDocCategorySizeDatePackage
JTextAreaDemo.javaAPI DocExample267Tue Jul 15 20:34:42 BST 2003None

JTextAreaDemo

public class JTextAreaDemo extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

		JFrame jf = new JFrame("whoo");
		Container cp = jf.getContentPane();
		cp.add(new JTextArea(10, 10));
		jf.pack();
		jf.setVisible(true);