vfs
Class NativeDirectory

java.lang.Object
  extended by vfs.VFSDirectory
      extended by vfs.NativeDirectory
All Implemented Interfaces:
VFSItem

public class NativeDirectory
extends VFSDirectory

A NativeDirectory is a VFSDirectory representing a directory in the native file system.


Constructor Summary
NativeDirectory(java.lang.String nm, NativeDirectory par)
          new NativeDirectory(nm, par) returns a virtual directory named nm whose parent is par.
NativeDirectory(java.net.URL url)
          new NativeDirectory(url) returns a new virtual file system root directory representing the native directory whose URL is url.
 
Method Summary
 
Methods inherited from class vfs.VFSDirectory
addFile, addSubdirectory, escort, getFile, getFileNames, getFiles, getName, getSubdirectories, getSubdirectory, getSubdirectoryNames, getURL, isRoot
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NativeDirectory

public NativeDirectory(java.net.URL url)
new NativeDirectory(url) returns a new virtual file system root directory representing the native directory whose URL is url.

Parameters:
url - the URL of the native root directory

NativeDirectory

public NativeDirectory(java.lang.String nm,
                       NativeDirectory par)
new NativeDirectory(nm, par) returns a virtual directory named nm whose parent is par.

Parameters:
nm - the name of the native directory
par - its virtual file system parent