1import java.applet.Applet;
2import java.awt.*;
3import java.awt.event.*;
4
5public
6class ButtonApplet4 extends Applet {
7
8 TextArea t;
9 Button b;
10
11 public
12 void init () {
13 t = new TextArea("",6,40,TextArea.SCROLLBARS_VERTICAL_ONLY);
14 b = new Button("druecke mich");
15
16 b.addActionListener
17 (new ActionListener()
18 {
19 public
20 void actionPerformed(ActionEvent e) {
21 t.append("autsch!!!\n");
22 }
23 }
24 );
25
26 add(t);
27 add(b);
28 }
29}
30
31