| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| HandlerFactory |
|
| 0.0;0 |
| 1 | package org.webslinger.commons.vfs.handlers; | |
| 2 | ||
| 3 | import org.apache.commons.vfs.FileSystem; | |
| 4 | import org.apache.commons.vfs.FileSystemException; | |
| 5 | ||
| 6 | public interface HandlerFactory<F extends Handler, S extends FileSystem> { | |
| 7 | F getHandler(S fs, Class<F> handlerClass) throws FileSystemException; | |
| 8 | } |