FileDocCategorySizeDatePackage
main.javaAPI DocExample395Sun Feb 23 17:53:40 GMT 1997None

main

public class main extends Applet implements ActionListener

Fields Summary
Label
l
Constructors Summary
Methods Summary
public voidactionPerformed(java.awt.event.ActionEvent e)

		l.setText("This is the really long text");
		l.invalidate();
		validate();
	
public voidinit()

		Button b = new Button("press");
		b.addActionListener( this );
		add(b);
		l = new Label("Foo");
		add( l );