home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / filechooser / FileSystemRoot.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  324 b   |  18 lines

  1. package javax.swing.filechooser;
  2.  
  3. import java.io.File;
  4.  
  5. class FileSystemRoot extends File {
  6.    public FileSystemRoot(File var1) {
  7.       super(var1, "");
  8.    }
  9.  
  10.    public FileSystemRoot(String var1) {
  11.       super(var1);
  12.    }
  13.  
  14.    public boolean isDirectory() {
  15.       return true;
  16.    }
  17. }
  18.