
de.schlichtherle.truezip.fs.file.FileDriver Maven / Gradle / Ivy
/*
* Copyright (C) 2005-2012 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package de.schlichtherle.truezip.fs.file;
import de.schlichtherle.truezip.fs.FsController;
import de.schlichtherle.truezip.fs.FsDriver;
import de.schlichtherle.truezip.fs.FsModel;
import javax.annotation.CheckForNull;
import javax.annotation.concurrent.Immutable;
/**
* A file system driver for the FILE scheme.
*
* @author Christian Schlichtherle
*/
@Immutable
public final class FileDriver extends FsDriver {
@Override
public FsController> newController(
final FsModel model,
final @CheckForNull FsController> parent) {
assert null == parent;
return new FileController(model);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy