|
TrueZIP Kernel 7.0-rc2 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectde.schlichtherle.truezip.fs.FsDriver
@Immutable @DefaultAnnotation(value=edu.umd.cs.findbugs.annotations.NonNull.class) 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(FsModel model,
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 |
|---|
public abstract FsController<?> newController(FsModel model,
@Nullable
FsController<?> parent)
When called, the following expression is a precondition:
null == model.getParent()
? null == parent
: model.getParent().equals(parent.getModel())
model - the file system model.parent - the nullable 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-rc2 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||