|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use VFSDirectory | |
---|---|
appBase | The appBase package is a framework for creating programs that can run either as a standalone application or as an applet. |
vfs | The vfs package implements virtual file systems. |
Uses of VFSDirectory in appBase |
---|
Methods in appBase that return VFSDirectory | |
---|---|
VFSDirectory |
AppBase.getPackageDirectory()
|
Uses of VFSDirectory in vfs |
---|
Subclasses of VFSDirectory in vfs | |
---|---|
class |
JarDirectory
A JarDirectory is a VFSDirectory representing a directory in a jar file. |
class |
NativeDirectory
A NativeDirectory is a VFSDirectory representing a directory in the native file system. |
Methods in vfs that return VFSDirectory | |
---|---|
VFSDirectory |
VFSRoot.getRootDirectory()
vfsr.getRootDirectory() returns the topmost directory for vfsr. |
VFSDirectory |
VFSDirectory.getSubdirectory(java.lang.String nm)
d.getFile(nm) returns the subdirectory named nm in d or null if there is no such subdirectory. |
Methods in vfs that return types with arguments of type VFSDirectory | |
---|---|
java.util.Iterator<VFSDirectory> |
VFSDirectory.getSubdirectories()
d.getSubdirectories() returns an iterator for the subdirectories of d. |
Methods in vfs with parameters of type VFSDirectory | |
---|---|
protected void |
VFSDirectory.addSubdirectory(VFSDirectory dir)
d.addSubdirectory(nm) adds the subdirectory named nm to d. |
void |
VFSVisitor.enter(VFSDirectory d)
v.enter(d) performs algorithm steps required when v is escorted into the directory d. |
void |
VFSVisitor.leave(VFSDirectory d)
v.leave(d) performs algorithm steps required when v is escorted out of the directory d. |
Constructors in vfs with parameters of type VFSDirectory | |
---|---|
VFSDirectory(java.lang.String nm,
VFSDirectory par)
new VFSDirectory(nm, par) returns a virtual directory named nm whose parent is par. |
|
VFSFile(java.lang.String nm,
VFSDirectory par)
new VFSFile(nm, par) returns a virtual file for a file named nm whose parent directory is par. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |