Die Datei:
ButtonApplet.java
1
import
javax
.
swing
.
JApplet
;
2
import
javax
.
swing
.
JButton
;
3
4
public
5
class
ButtonApplet
extends
JApplet
{
6
7
public
8
void
init
(
)
{
9
add
(
new
JButton
(
"drück mich!!!"
)
)
;
10
}
11
}
Die Quelle:
ButtonApplet.java
Letzte Änderung: 30.06.2008
©
Prof. Dr. Uwe Schmidt