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

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