home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-06-18 | 601 b | 29 lines | [TEXT/dosa] |
- // DesktopFolder.java : this is a Java source code file for the program Facade.
- // Copyright 1998, Andrew S. Downs
- // andrew.downs@tulane.edu
- //
- // This source code is distributed as freeware.
- // Just keep this author information in the file. Enjoy!
-
- import java.awt.*;
- import java.awt.event.*;
- import java.io.*;
- import java.util.*;
-
- public class DesktopDoc extends DesktopFrameItem implements Serializable {
- static Image image;
-
- DesktopDoc() {
- super();
- }
-
- public Image getImage() {
- return image;
- }
-
- public static void setImage( Image i ) {
- image = i;
- }
- }
-
-