home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / SOURCE.BIN / ModalDialog.java < prev    next >
Encoding:
Java Source  |  1997-06-19  |  272 b   |  16 lines

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