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

  1. //    DesktopDialog.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.io.*;
  10.  
  11. public class DesktopDialog extends DesktopWindow implements Serializable {
  12.     
  13.     DesktopDialog() {
  14.         super();
  15.     }
  16. }
  17.  
  18.