Uses of Class
vfs.VFSFile

Packages that use VFSFile
vfs The vfs package implements virtual file systems. 
 

Uses of VFSFile in vfs
 

Methods in vfs that return VFSFile
protected  VFSFile VFSDirectory.addFile(java.lang.String nm)
          addFile(nm) adds the file named nm to this VFSDirectory.
 VFSFile VFSDirectory.getFile(java.lang.String nm)
          d.getFile(nm) returns the file named nm in d or null if there is no such file.
 

Methods in vfs that return types with arguments of type VFSFile
 java.util.Iterator<VFSFile> VFSDirectory.getFiles()
          d.getFiles() returns an iterator for the files in d.
 

Methods in vfs with parameters of type VFSFile
 void VFSVisitor.visit(VFSFile f)
          v.visit(f) performs algorithm steps required when v is escorted to the file f.