home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-03 | 466 b | 14 lines |
- package borland.samples.apps.chess.client ;
- /**Until browsers support modal dialogs, lets jump through hoops
-
- */
- public interface ModalParent {
- /** Classes that implement this interface would typically disable
- *
- *the world when true, re-enable when false
- *@param boolean state - true - do what it takes to act like you have
- * spawned a modal dialog
- * false - undo the damage you did.
- */
- public void setModal (boolean state);
- }