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

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