View Javadoc

1   // WinNTFileSystem.java, created Tue Aug  6 14:35:03 2002 by joewhaley
2   // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu>
3   // Licensed under the terms of the GNU LGPL; see COPYING for details.
4   package joeq.ClassLib.sun14_win32.java.io;
5   
6   /*
7    * @author  John Whaley <jwhaley@alum.mit.edu>
8    * @version $Id: WinNTFileSystem.java 1451 2004-03-09 06:27:08Z jwhaley $
9    */
10  public abstract class WinNTFileSystem extends Win32FileSystem {
11  
12      public java.lang.String canonicalize(java.lang.String s) throws java.io.IOException { return super.canonicalize(s); }
13      public int getBooleanAttributes(java.io.File f) { return super.getBooleanAttributes(f); }
14      public boolean checkAccess(java.io.File f, boolean b) { return super.checkAccess(f, b); }
15      public long getLastModifiedTime(java.io.File f) { return super.getLastModifiedTime(f); }
16      public long getLength(java.io.File f) { return super.getLength(f); }
17      public boolean createFileExclusively(java.lang.String s) throws java.io.IOException { return super.createFileExclusively(s); }
18      public boolean delete(java.io.File f) { return super.delete(f); }
19      public synchronized boolean deleteOnExit(java.io.File f) { return super.deleteOnExit(f); }
20      public java.lang.String[] list(java.io.File f) { return super.list(f); }
21      public boolean createDirectory(java.io.File f) { return super.createDirectory(f); }
22      public boolean rename(java.io.File f1, java.io.File f2) { return super.rename(f1, f2); }
23      public boolean setLastModifiedTime(java.io.File f, long t) { return super.setLastModifiedTime(f, t); }
24      public boolean setReadOnly(java.io.File f) { return super.setReadOnly(f); }
25      String getDriveDirectory(int i) { return super.getDriveDirectory(i); }
26      
27      private static void initIDs() {}
28  }