Context
- The type of the calling context.public static interface FsController.Factory<Context>
Implementations should be safe for multi-threaded access.
Modifier and Type | Method and Description |
---|---|
FsController |
newController(Context context,
FsModel model,
FsController parent)
Returns a new file system controller for the mount point of the
given file system model.
|
FsController newController(Context context, FsModel model, @CheckForNull FsController parent)
When called, you may assert the following precondition:
assert null == parent
? null == model.getParent()
: parent.getModel().equals(model.getParent())
context
- the calling context.model
- the file system model.parent
- the nullable parent file system controller.Copyright © 2005–2018 Schlichtherle IT Services. All rights reserved.