home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1998 #7 & #8 / Datatid-1998-07&08.iso / internet / visual / main.bin / ModalDialog.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-08-04  |  675 b   |  14 lines

  1. package symantec.itools.awt.util.dialog;
  2.  
  3. import java.awt.Frame;
  4.  
  5. public strictfp class ModalDialog extends DialogBox {
  6.    public ModalDialog(Frame f) {
  7.       super(f, true);
  8.    }
  9.  
  10.    public ModalDialog(Frame f, String s) {
  11.       super(f, s, true);
  12.    }
  13. }
  14.