home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap15 / MyApplet2.java < prev    next >
Text File  |  1996-02-20  |  518b  |  31 lines

  1. import java.applet.*;
  2. import java.awt.*;
  3.  
  4. public class MyApplet2 extends Applet
  5. {
  6.     public void init()
  7.     {
  8.         // Place initialization cycle code here.
  9.     }
  10.  
  11.     public void start()
  12.     {
  13.         // Place start cycle code here.
  14.     }
  15.  
  16.     public void paint(Graphics g)
  17.     {
  18.         // Place paint cycle code here.
  19.     }
  20.  
  21.     public void stop()
  22.     {
  23.         // Place stop cycle code here.
  24.     }
  25.  
  26.     public void destroy()
  27.     {
  28.         // Place destroy cycle code here.
  29.     }
  30. }
  31.