Uses of Interface
org.millscript.commons.vfs.VFolder

Packages that use VFolder
org.millscript.commons.vfs This package provides the interface to the virtual filing system. 
org.millscript.commons.vfs.mime This package provides MIME type support for the virtual filesystem. 
org.millscript.commons.vfs.mime.zip This package provides the "application/x-zip" MIME type support for the virtual filesystem. 
org.millscript.commons.vfs.protocols This package provides URI scheme support for the virtual filesystem. 
org.millscript.commons.vfs.protocols.file This package provides the "file" URI scheme support for the virtual filesystem. 
org.millscript.commons.vfs.protocols.ftp This package provides the "ftp" URI scheme support for the virtual filesystem. 
org.millscript.commons.vfs.protocols.http This package provides the "http" URI scheme support for the virtual filesystem. 
org.millscript.commons.vfs.util This package provides additional utilities for the virtual filesystem. 
 

Uses of VFolder in org.millscript.commons.vfs
 

Classes in org.millscript.commons.vfs that implement VFolder
 class AbstractVFolder<V extends VVolume>
          This class provides the skeletal implementation of a virtual filesystem folder,
 

Methods in org.millscript.commons.vfs that return VFolder
 VFolder VFolder.checkVFolder(java.lang.String segment)
          Returns the entry for the child folder with the specified name, but only if it exists and throws an exception otherwise.
 VFolder VFS.getCurrentWorkingFolder()
          Returns the virtual folder for the current working folder.
 VFolder VEntry.getParent()
          Returns the parent folder for this entry.
 VFolder AbstractVEntry.getParent()
           
 VFolder VVolume.getRootVFolder()
          Returns the root VFolder for this virtual volume.
 VFolder VFolder.getVFolder(java.lang.String segment)
          Returns the entry for the child folder with the specified name.
 VFolder VFolder.make()
          Makes this folder in the volume.
 VFolder VFolder.make(java.lang.String segment)
          Makes the specified folder in the volume, as a child of the current folder.
 VFolder AbstractVFolder.make(java.lang.String segment)
           
 VFolder VFolder.resolveAsFolder(java.lang.String path)
          Resolves the specified path to a virtual folder in this folder.
 VFolder AbstractVFolder.resolveAsFolder(java.lang.String path)
           
 VFolder VFS.resolveAsFolder(java.net.URI uri)
           
 VFolder VFolder.toLocal()
          Returns this virtual folder as a local folder, which may simply be this object.
 

Methods in org.millscript.commons.vfs that return types with arguments of type VFolder
 java.util.List<VFolder> VFolder.listFolders()
          Returns a list of all the child folders in this folder.
 

Constructors in org.millscript.commons.vfs with parameters of type VFolder
AbstractVEntry(V vol, VFolder parent, java.lang.String name)
          Constructs a new virtual filesystem entry with the specified name, parent folder and volume.
AbstractVFile(V vol, VFolder parent, java.lang.String name)
          Constructs a new virtual filesystem file with the specified name, parent folder and volume.
AbstractVFolder(V vol, VFolder parent, java.lang.String name)
          Constructs a new virtual filesystem folder with the specified name, parent folder and volume.
 

Uses of VFolder in org.millscript.commons.vfs.mime
 

Methods in org.millscript.commons.vfs.mime that return VFolder
 VFolder AbstractMIMEVVolume.getRootVFolder()
           
protected abstract  VFolder AbstractMIMEVVolume.makeRootVFolder(VFile sourceFile)
          Constructs the root folder for this volume, with the specified parent folder and returns it.
 VFolder MIMETypeHandler.resolveAsFolder(VFile file)
          Resolves the specified VFile to a virtual folder in a new virtual filesystem.
 

Uses of VFolder in org.millscript.commons.vfs.mime.zip
 

Classes in org.millscript.commons.vfs.mime.zip that implement VFolder
 class ReadOnlyZipFolder
          This class implements a virtual filesystem folder for a read-only zip file folder.
 

Methods in org.millscript.commons.vfs.mime.zip that return VFolder
 VFolder ReadOnlyZipFolder.make()
           
protected  VFolder ReadOnlyZipVolume.makeRootVFolder(VFile sourceFile)
           
 VFolder ZipMIMEHandler.resolveAsFolder(VFile file)
           
 

Methods in org.millscript.commons.vfs.mime.zip that return types with arguments of type VFolder
 java.util.List<VFolder> ReadOnlyZipFolder.listFolders()
           
 

Uses of VFolder in org.millscript.commons.vfs.protocols
 

Methods in org.millscript.commons.vfs.protocols that return VFolder
 VFolder AbstractProtocolVVolume.getRootVFolder()
           
protected abstract  VFolder AbstractProtocolVVolume.makeRootVFolder()
          Constructs the root folder for this volume, with the specified parent folder and returns it.
 VFolder URISchemeHandler.resolveAsFolder(java.net.URI uri)
          Resolves the specified URI to a virtual fole in a new virtual filesystem.
 

Uses of VFolder in org.millscript.commons.vfs.protocols.file
 

Classes in org.millscript.commons.vfs.protocols.file that implement VFolder
 class LocalFolder
          This class implements a virtual filesystem folder for a local filesystem folder.
 

Methods in org.millscript.commons.vfs.protocols.file that return VFolder
 VFolder LocalFolder.make()
           
protected  VFolder LocalVolume.makeRootVFolder()
           
 VFolder FileSchemeHandler.resolveAsFolder(java.net.URI uri)
           
 

Methods in org.millscript.commons.vfs.protocols.file that return types with arguments of type VFolder
 java.util.List<VFolder> LocalFolder.listFolders()
           
 

Uses of VFolder in org.millscript.commons.vfs.protocols.ftp
 

Classes in org.millscript.commons.vfs.protocols.ftp that implement VFolder
 class FtpFolder
          This class implements a virtual filesystem folder for an FTP filesystem folder.
 

Methods in org.millscript.commons.vfs.protocols.ftp that return VFolder
 VFolder FtpFolder.make()
           
protected  VFolder FtpVolume.makeRootVFolder()
           
 VFolder FtpSchemeHandler.resolveAsFolder(java.net.URI uri)
           
 

Methods in org.millscript.commons.vfs.protocols.ftp that return types with arguments of type VFolder
 java.util.List<VFolder> FtpFolder.listFolders()
           
 

Uses of VFolder in org.millscript.commons.vfs.protocols.http
 

Classes in org.millscript.commons.vfs.protocols.http that implement VFolder
 class HttpFolder
          This class implements a virtual filesystem folder for an HTTP filesystem folder.
 

Methods in org.millscript.commons.vfs.protocols.http that return VFolder
 VFolder HttpFolder.make()
           
protected  VFolder HttpVolume.makeRootVFolder()
           
 VFolder HttpSchemeHandler.resolveAsFolder(java.net.URI uri)
           
 

Methods in org.millscript.commons.vfs.protocols.http that return types with arguments of type VFolder
 java.util.List<VFolder> HttpFolder.listFolders()
           
 

Uses of VFolder in org.millscript.commons.vfs.util
 

Classes in org.millscript.commons.vfs.util that implement VFolder
 class ChrootFolder
          This class implements a virtual folder for a Unix style chroot volume.
 

Methods in org.millscript.commons.vfs.util that return VFolder
 VFolder StandardConsoleFile.getParent()
           
 VFolder ChrootFolder.getParent()
           
 VFolder ChrootFile.getParent()
           
 VFolder ChrootVolume.getRootVFolder()
           
 VFolder SimpleVolume.getRootVFolder()
           
 VFolder ChrootFolder.make()
           
 VFolder ChrootFolder.make(java.lang.String segment)
           
 VFolder ChrootFolder.resolveAsFolder(java.lang.String path)
           
static VFolder Resolver.resolveAsFolder(VFolder base, java.lang.String path)
          Resolves the specified path to a virtual folder against the specified folder.
 VFolder ChrootFolder.toLocal()
           
 

Methods in org.millscript.commons.vfs.util that return types with arguments of type VFolder
 java.util.List<VFolder> ChrootFolder.listFolders()
           
 

Methods in org.millscript.commons.vfs.util with parameters of type VFolder
 ChrootFolder ChrootVolume.makeRootVFolder(VFolder parent)
          Constructs the root folder for this volume, with the specified parent folder and returns it.
static VFile Resolver.resolveAsFile(VFolder base, java.lang.String path)
          Resolves the specified path to a virtual file against the specified folder.
static VFolder Resolver.resolveAsFolder(VFolder base, java.lang.String path)
          Resolves the specified path to a virtual folder against the specified folder.
static VVolume Resolver.resolveAsVolume(VFolder base, java.lang.String path)
          Resolves the specified path to a new virtual volume against the specified folder, with the volumes root at the resolved path.
 

Constructors in org.millscript.commons.vfs.util with parameters of type VFolder
ChrootVolume(VFolder root)
          Constructs a new chroot volume with the specified folder as its root.
SimpleVolume(VFolder rootFolder)
          Constructs a new simple volume for the specified folder.
 



Copyright © 2005-2007 Open World Ltd. All Rights Reserved.