home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / Window.pre < prev    next >
Text File  |  1995-10-08  |  910b  |  51 lines

  1. import java.awt.*;
  2.  
  3. public class \Name\ extends java.awt.Window
  4.    {
  5.    public \Name\ (Frame AParent)
  6.       {
  7.       super (AParent);
  8.       }
  9.    public void init() 
  10.       {
  11.       //Add your code here
  12.       }
  13.  
  14.    public void start() 
  15.       {
  16.       init ();
  17.       //Add your code here
  18.       }
  19.  
  20.    public void stop() 
  21.       {
  22.       //Add your code here
  23.       }
  24.  
  25.    public void destroy() 
  26.       {
  27.       //Add your code here
  28.       }
  29.  
  30.    public void paint(Graphics g) 
  31.       {
  32.       //Add your code here
  33.       super.paint (g);
  34.       }
  35.  
  36.    public boolean action (Event e, Object o)
  37.       {
  38.       //Add your code here
  39.       return super.action (e,o);
  40.       }
  41.  
  42.    public boolean handleEvent (Event e) 
  43.       {
  44.       //Add your code here
  45.       return super.handleEvent (e);
  46.       }
  47.    }
  48.  
  49. //JAVADRAW! type definition section
  50. //Please do not alter this remark! [JDV5.0tds]
  51.