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

  1. // CreditPanel.java
  2. // 28.02.96
  3. //
  4. // the credits screen
  5.  
  6. package cybcerone.credit;
  7.  
  8. import cybcerone.utils.Appletlike;
  9. import cybcerone.utils.SuperPanel;
  10.  
  11. /**
  12.  * An image of the people who worked on this project.
  13.  */
  14. public class CreditPanel extends SuperPanel {
  15.   public static final String id = "credit";
  16.   public static final String imagePath = "informations/";
  17.  
  18.   private static final String statusText = "Brought to you by...";
  19.   private static final String bgFile = imagePath + "fond_credit.gif";
  20.  
  21.   public CreditPanel (Appletlike app) {
  22.     super (id, statusText, app);
  23.     setBackground (bgFile, 3);
  24.   }
  25. }
  26.