home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-02-19 | 518 b | 31 lines |
- import java.applet.*;
- import java.awt.*;
-
- public class MyApplet2 extends Applet
- {
- public void init()
- {
- // Place initialization cycle code here.
- }
-
- public void start()
- {
- // Place start cycle code here.
- }
-
- public void paint(Graphics g)
- {
- // Place paint cycle code here.
- }
-
- public void stop()
- {
- // Place stop cycle code here.
- }
-
- public void destroy()
- {
- // Place destroy cycle code here.
- }
- }
-