home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Windows 95.com 1996 September
/
WIN95_09961.iso
/
java
/
grindist.exe
/
DATA.Z
/
SampleApplet.java
< prev
next >
Wrap
Text File
|
1996-06-29
|
408b
|
16 lines
// SampleApplet.java LPS 6/15/96
// This is a sample file that will create a new applet that displays
// the phrase "Hello Brave New World!" in a window.
package sample.applet;
import java.awt.Graphics;
public class SampleApplet extends java.applet.Applet {
public void init() {
resize(300,200);
}
public void paint(Graphics g) {
g.drawString("Hello Brave New World!", 50, 25);
}
}