home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap15 / MyApplet2.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-02-19  |  500 b   |  20 lines

  1. import java.applet.Applet;
  2. import java.awt.Graphics;
  3.  
  4. public class MyApplet2 extends Applet {
  5.    public void init() {
  6.    }
  7.  
  8.    public void start() {
  9.    }
  10.  
  11.    public void paint(Graphics var1) {
  12.    }
  13.  
  14.    public void stop() {
  15.    }
  16.  
  17.    public void destroy() {
  18.    }
  19. }
  20.