home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / 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.