home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Papers / OS Shell in Java / Facade / DesktopDoc.java < prev    next >
Encoding:
Java Source  |  1998-06-18  |  601 b   |  29 lines  |  [TEXT/dosa]

  1. //    DesktopFolder.java : this is a Java source code file for the program Facade.
  2. //    Copyright 1998, Andrew S. Downs
  3. //    andrew.downs@tulane.edu
  4. //
  5. //    This source code is distributed as freeware.
  6. //    Just keep this author information in the file.  Enjoy!
  7.  
  8. import java.awt.*;
  9. import java.awt.event.*;
  10. import java.io.*;
  11. import java.util.*;
  12.  
  13. public class DesktopDoc extends DesktopFrameItem implements Serializable {
  14.     static Image image;
  15.     
  16.     DesktopDoc() {
  17.         super();
  18.     }
  19.  
  20.     public Image getImage() {
  21.         return image;
  22.     }
  23.     
  24.     public static void setImage( Image i ) {
  25.         image = i;
  26.     }
  27. }
  28.  
  29.