home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-14 | 661 b | 27 lines |
- // UrgencesPanel.java
- // 19.03.96
- //
- // the urgences screen, accessible from the control panel
-
- package cybcerone.control;
-
- import cybcerone.utils.Appletlike;
- import cybcerone.utils.SuperPanel;
-
- /**
- * This screen contains phone numbers to call in case of emergency.
- */
- public class UrgencesPanel extends SuperPanel {
- public static final String id = "UrgencesPanel";
- public static final String imagePath = "";
-
- private static final String statusText = "In case of emergency...";
- private static final String bgFile = "urgences.gif";
-
- public UrgencesPanel (Appletlike app) {
- super (id, statusText, app);
-
- setBackground (bgFile, 1);
- }
- }
-