home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / unuy2wen / cybcerone / control / urgencespanel.java < prev   
Encoding:
Java Source  |  1996-08-14  |  661 b   |  27 lines

  1. // UrgencesPanel.java
  2. // 19.03.96
  3. //
  4. // the urgences screen, accessible from the control panel
  5.  
  6. package cybcerone.control;
  7.  
  8. import cybcerone.utils.Appletlike;
  9. import cybcerone.utils.SuperPanel;
  10.  
  11. /**
  12.  * This screen contains phone numbers to call in case of emergency.
  13.  */
  14. public class UrgencesPanel extends SuperPanel {
  15.   public static final String id = "UrgencesPanel";
  16.   public static final String imagePath = "";
  17.  
  18.   private static final String statusText = "In case of emergency...";
  19.   private static final String bgFile = "urgences.gif";
  20.   
  21.   public UrgencesPanel (Appletlike app) {
  22.     super (id, statusText, app);
  23.     
  24.     setBackground (bgFile, 1);
  25.   }
  26. }
  27.