home *** CD-ROM | disk | FTP | other *** search
- // This is a sample file that will create a new applet that displays
- // the phrase "Hello Brave New World!" in a window.
-
- package java.applet;
-
- import java.awt.Graphics;
-
- public class MyNewApplet extends Applet {
- public void init() {
- resize(300,200);
- }
- public void paint(Graphics g) {
- g.drawString("Hello Brave New World!", 50, 25);
- }
- }