Package vfs

The vfs package implements virtual file systems.

See:
          Description

Interface Summary
VFSItem A VFSItem is an item in a virtual file system.
VFSVisitor A VFSVisitor executes an algorithm with files and directories while being escorted through a virtual file system.
 

Class Summary
JarDirectory A JarDirectory is a VFSDirectory representing a directory in a jar file.
NativeDirectory A NativeDirectory is a VFSDirectory representing a directory in the native file system.
VFSDirectory A VFSDirectory is a container for VFSItem objects in a virtual file system.
VFSFile A VFSFile is a leaf item in a virtual file system.
VFSRoot A VFSRoot is the root of a virtual file system.
 

Error Summary
VFSError A VFSError is used to rethrow checked exceptions as unchecked exceptions, which do not require a try..catch statement.
 

Package vfs Description

The vfs package implements virtual file systems. Currently these file systems can be rooted in either the native file system or in an applet's or application's jar files. In the future, the implementations could be extended to include virtual files that are in memory.