|
TrueZIP Kernel 7.0-rc1 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectde.schlichtherle.truezip.fs.FsDriver
@Immutable public abstract class FsDriver
An abstract factory for thread-safe file system controllers.
| Constructor Summary | |
|---|---|
FsDriver()
|
|
| Method Summary | |
|---|---|
boolean |
isFederated()
Returns true iff this file system driver implements a federated
file system type, i.e. if the type of file system must be a member of a
parent file system. |
abstract FsController<?> |
newController(FsMountPoint mountPoint,
FsController<?> parent)
Returns a new thread-safe file system controller for the given mount point and parent file system controller. |
String |
toString()
Returns a string representation of this object for debugging and logging purposes. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public FsDriver()
| Method Detail |
|---|
@NonNull
public abstract FsController<?> newController(@NonNull
FsMountPoint mountPoint,
@Nullable
FsController<?> parent)
When called, the following expression is a precondition:
null == mountPoint.getParent()
? null == parent
: mountPoint.getParent().equals(parent.getModel().getMountPoint())
mountPoint - the mount point of the file system.parent - the parent file system controller.
public boolean isFederated()
true iff this file system driver implements a federated
file system type, i.e. if the type of file system must be a member of a
parent file system.
The implementation in the class FsDriver returns false.
true iff the type of the file system implemented by this
file system driver is federated, i.e. must be a member of a
parent file system.public String toString()
toString in class Object
|
TrueZIP Kernel 7.0-rc1 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||